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 |
电子邮箱 | [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" } } |