Notion Colorizer
Add some style to Notion
Wat is Notion Colorizer?
Notion Colorizer is een Chrome-extensie ontwikkeld door rosher.mark, en de belangrijkste functie is "Add some style to Notion".
Extensie Screenshots
Download het CRX-bestand van de extensie Notion Colorizer
Download Notion Colorizer-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
This extension adds colors to Notion tables based on the tags you specify. Basisinformatie over de Extensie
| Naam | |
| ID | bhnchphfhbkgieljecbphalgampfiehh |
| Officiële URL | https://chromewebstore.google.com/detail/notion-colorizer/bhnchphfhbkgieljecbphalgampfiehh |
| Beschrijving | Add some style to Notion |
| Bestandsgrootte | 230 KB |
| Aantal Installaties | 25 |
| Huidige Versie | 0.1.1 |
| Laatst Bijgewerkt | 2023-04-04 |
| Publicatiedatum | 2023-04-04 |
| Beoordeling | 5.00/5 Totaal 1 Beoordelingen |
| Ontwikkelaar | rosher.mark |
| [email protected] | |
| Betalingswijze | free |
| Extensiewebsite | https://github.com/DeMarkR/Notion-Colorizer |
| Ondersteunde Talen | 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"
}
} | |