Notion Colorizer
Add some style to Notion
Vad är Notion Colorizer?
Notion Colorizer är en Chrome-tillägg utvecklad av rosher.mark, och dess huvudfunktion är "Add some style to Notion".
Tilläggsskärmbilder
Ladda ner Notion Colorizer-förlängningens CRX-fil
Ladda ner Notion Colorizer-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
This extension adds colors to Notion tables based on the tags you specify. Grundläggande Information om Tillägg
| Namn | |
| ID | bhnchphfhbkgieljecbphalgampfiehh |
| Officiell webbadress | https://chromewebstore.google.com/detail/notion-colorizer/bhnchphfhbkgieljecbphalgampfiehh |
| Beskrivning | Add some style to Notion |
| Filstorlek | 230 KB |
| Antal Installationer | 25 |
| Aktuell Version | 0.1.1 |
| Senast Uppdaterad | 2023-04-04 |
| Publiceringsdatum | 2023-04-04 |
| Betyg | 5.00/5 Totalt 1 Betyg |
| Utvecklare | rosher.mark |
| E-post | [email protected] |
| Betalningssätt | free |
| Tilläggswebbplats | https://github.com/DeMarkR/Notion-Colorizer |
| Stödda Språk | 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"
}
} | |