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. 擴展基本資訊
| 名稱 | |
| ID | bhnchphfhbkgieljecbphalgampfiehh |
| 官方網址 | 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"
}
} | |