Notion Colorizer
Add some style to Notion
O que é Notion Colorizer?
Notion Colorizer é uma extensão do Chrome desenvolvida por rosher.mark, e sua principal característica é "Add some style to Notion".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Notion Colorizer
Baixe arquivos de extensão Notion Colorizer no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
This extension adds colors to Notion tables based on the tags you specify.
Informações Básicas da Extensão
Nome | Notion Colorizer |
ID | bhnchphfhbkgieljecbphalgampfiehh |
URL Oficial | https://chromewebstore.google.com/detail/notion-colorizer/bhnchphfhbkgieljecbphalgampfiehh |
Descrição | Add some style to Notion |
Tamanho do Arquivo | 230 KB |
Contagem de Instalações | 25 |
Versão Atual | 0.1.1 |
Última Atualização | 2023-04-04 |
Data de Publicação | 2023-04-04 |
Classificação | 5.00/5 Total de 1 Avaliações |
Desenvolvedor | rosher.mark |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/DeMarkR/Notion-Colorizer |
Idiomas Suportados | 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" } } |