Notion Colorizer
Add some style to Notion
Notion Colorizerとは何ですか?
Notion Colorizerはrosher.markによって開発されたChromeの拡張機能で、その主な機能は「Add some style to Notion」です。
拡張機能のスクリーンショット
Notion Colorizer拡張機能のCRXファイルをダウンロード
Notion Colorizer拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
This extension adds colors to Notion tables based on the tags you specify.
拡張機能の基本情報
名前 | Notion Colorizer |
ID | bhnchphfhbkgieljecbphalgampfiehh |
公式URL | https://chromewebstore.google.com/detail/notion-colorizer/bhnchphfhbkgieljecbphalgampfiehh |
説明 | Add some style to Notion |
ファイルサイズ | 230 KB |
インストール数 | 25 |
現在のバージョン | 0.1.1 |
最終更新日 | 2023-04-04 |
公開日 | 2023-04-04 |
評価 | 5.00/5 合計 1 レビュー |
開発者 | rosher.mark |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://github.com/DeMarkR/Notion-Colorizer |
対応言語 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Notion Colorizer", "description": "Add some style to Notion", "version": "0.1.1", "manifest_version": 3, "background": { "service_worker": "serviceWorker.js" }, "content_scripts": [ { "matches": [ "*:\/\/*.www.notion.so\/*" ], "js": [ "contentScript.js" ] } ], "permissions": [ "storage" ], "options_ui": { "page": "options.html", "open_in_tab": true }, "action": { "default_title": "Notion Colorizer", "default_popup": "popup.html", "default_icon": { "16": "\/icons\/notionIco16.png", "32": "\/icons\/notionIco32.png", "48": "\/icons\/notionIco48.png", "128": "\/icons\/notionIco128.png" } }, "icons": { "16": "\/icons\/notionIco16.png", "32": "\/icons\/notionIco32.png", "48": "\/icons\/notionIco48.png", "128": "\/icons\/notionIco128.png" } } |