Skip to content

Commit

Permalink
『Notionのダークモードのガントチャートが見づらいのをChrome拡張で修正する方法』を書いた (#176)
Browse files Browse the repository at this point in the history
  • Loading branch information
kyu08 authored Nov 8, 2024
1 parent f03c20d commit 895cb6d
Show file tree
Hide file tree
Showing 6 changed files with 46 additions and 0 deletions.
Binary file not shown.
Binary file not shown.
Binary file not shown.
46 changes: 46 additions & 0 deletions content/posts/refine-notion-gantt-chart/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
---
title: "Notionのダークモードのガントチャートが見づらいのをChrome拡張で修正する方法"
tags: ["Notion", "Chrome Extension"]
keywords: ["Notion", "Chrome Extension"]

cover: "https://blog.kyu08.com/cover.png"
description: ""
date: 2024-11-08T23:34:37+09:00
author: "kyu08"
authorTwitter: "kyu08_"
draft: false
showFullContent: false
readingTime: true
hideComments: false
color: ""
---

## できること
Notionのガントチャートが見づらいのをなんとかするスクリプト

### Before
![before.webp](before.webp)

### After
![after.webp](after.webp)

## 前提条件
NotionをChromium系のブラウザで利用していること

## やり方
1. 下記のリンクからStylusをインストール
https://chromewebstore.google.com/detail/stylus/clngdbkpkpeebahjckkjfobafhncgmne?hl=ja
1. Manageをクリックして管理画面を開く
![open-management-window.webp](open-management-window.webp)
1. Write new styleをクリック
![click-write-new-style.webp](click-write-new-style.webp)
1. 次のCSSを入力しURLのブロックに`URLs starting with: https://www.notion.so/`を指定しSaveをクリック
```css
.notion-selectable.notion-page-block.notion-timeline-item a {
background: rgba(255, 255, 255, 0.15)
}
```
![set-configs.webp](set-configs.webp)
1. みやすくなる
![after.webp](after.webp)

Binary file not shown.
Binary file not shown.

0 comments on commit 895cb6d

Please sign in to comment.