Notion Colorizer
Add some style to Notion
Co to jest Notion Colorizer?
Notion Colorizer to rozszerzenie Chrome opracowane przez rosher.mark, a jego główną funkcją jest „Add some style to Notion”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Notion Colorizer
Pobierz pliki rozszerzeń Notion Colorizer w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
This extension adds colors to Notion tables based on the tags you specify. Podstawowe informacje o rozszerzeniu
| Nazwa | |
| ID | bhnchphfhbkgieljecbphalgampfiehh |
| Oficjalny URL | https://chromewebstore.google.com/detail/notion-colorizer/bhnchphfhbkgieljecbphalgampfiehh |
| Opis | Add some style to Notion |
| Rozmiar pliku | 230 KB |
| Liczba instalacji | 25 |
| Aktualna Wersja | 0.1.1 |
| Ostatnia Aktualizacja | 2023-04-04 |
| Data Publikacji | 2023-04-04 |
| Ocena | 5.00/5 Łącznie 1 Oceny |
| Deweloper | rosher.mark |
| [email protected] | |
| Typ Płatności | free |
| Strona Rozszerzenia | https://github.com/DeMarkR/Notion-Colorizer |
| Obsługiwane Języki | 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"
}
} | |