Notion Themes

Make your Notion pretty with custom themes.

Was ist Notion Themes?

Notion Themes ist eine Chrome-Erweiterung, die von Yudax entwickelt wurde, und ihr Hauptmerkmal ist "Make your Notion pretty with custom themes.".

Erweiterungsscreenshots

screenshot
screenshot
screenshot
screenshot
screenshot

Notion Themes-Erweiterungs-CRX-Datei herunterladen

Laden Sie Notion Themes-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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                    

Grundlegende Informationen zur Erweiterung

Name Notion Themes Notion Themes
ID pglbhommhmgieofbdbnlpcbgcdmoagfo
Offizielle URL https://chrome.google.com/webstore/detail/notion-themes/pglbhommhmgieofbdbnlpcbgcdmoagfo
Beschreibung Make your Notion pretty with custom themes.
Dateigröße 27.7 KB
Installationsanzahl 7,000
Aktuelle Version 0.0.2
Letztes Update 2022-01-11
Veröffentlichungsdatum 2022-01-11
Bewertung 5.00/5 Insgesamt 17 Bewertungen
Entwickler Yudax
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/notionblog/NotionThemes
Unterstützte Sprachen 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
    }
}