-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
『Notionのダークモードのガントチャートが見づらいのをChrome拡張で修正する方法』を書いた (#176)
- Loading branch information
Showing
6 changed files
with
46 additions
and
0 deletions.
There are no files selected for viewing
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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.