Notion Themes

Make your Notion pretty with custom themes.

Cos'è Notion Themes?

Notion Themes è un'estensione di Chrome sviluppata da Yudax, e la sua funzione principale è "Make your Notion pretty with custom themes.".

Screenshot dell'Estensione

screenshot
screenshot
screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Notion Themes

Scarica i file di estensione Notion Themes in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome Notion Themes Notion Themes
ID pglbhommhmgieofbdbnlpcbgcdmoagfo
URL Ufficiale https://chrome.google.com/webstore/detail/notion-themes/pglbhommhmgieofbdbnlpcbgcdmoagfo
Descrizione Make your Notion pretty with custom themes.
Dimensione del File 27.7 KB
Conteggio Installazioni 7,000
Versione Corrente 0.0.2
Ultimo Aggiornamento 2022-01-11
Data di Pubblicazione 2022-01-11
Valutazione 5.00/5 Totale 17 Valutazioni
Sviluppatore Yudax
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/notionblog/NotionThemes
Lingue Supportate 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
    }
}