Notion Themes

Make your Notion pretty with custom themes.

O que é Notion Themes?

Notion Themes é uma extensão do Chrome desenvolvida por Yudax, e sua principal característica é "Make your Notion pretty with custom themes.".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Notion Themes

Baixe arquivos de extensão Notion Themes 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

                        Notion Themes is an open-source web extension to apply custom themes to Notion.

Install Notion Themes and change the overall look and feel of Notion. Select from 10+ different dark/light color schemes.

Features:
- Library of updated beautiful themes
- Apply Custom Google Fonts
- Free and Open source                    

Informações Básicas da Extensão

Nome Notion Themes Notion Themes
ID pglbhommhmgieofbdbnlpcbgcdmoagfo
URL Oficial https://chrome.google.com/webstore/detail/notion-themes/pglbhommhmgieofbdbnlpcbgcdmoagfo
Descrição Make your Notion pretty with custom themes.
Tamanho do Arquivo 27.7 KB
Contagem de Instalações 7,000
Versão Atual 0.0.2
Última Atualização 2022-01-11
Data de Publicação 2022-01-11
Classificação 5.00/5 Total de 17 Avaliações
Desenvolvedor Yudax
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/notionblog/NotionThemes
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Notion Themes",
    "version": "0.0.2",
    "description": "Make your Notion pretty with custom themes.",
    "permissions": [
        "storage",
        "https:\/\/notionthemes.netlify.app\/"
    ],
    "icons": {
        "16": "icons\/16.png",
        "48": "icons\/48.png",
        "128": "icons\/128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.notion.so\/*"
            ],
            "js": [
                "js\/content.js"
            ]
        }
    ],
    "browser_action": {
        "default_title": "Choose a theme",
        "default_popup": "popup.html",
        "default_icon": {
            "19": "icons\/16.png",
            "38": "icons\/48.png"
        }
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    }
}