Notion Themes

Make your Notion pretty with custom themes.

Wat is Notion Themes?

Notion Themes is een Chrome-extensie ontwikkeld door Yudax, en de belangrijkste functie is "Make your Notion pretty with custom themes.".

Extensie Screenshots

screenshot
screenshot
screenshot
screenshot
screenshot

Download het CRX-bestand van de extensie Notion Themes

Download Notion Themes-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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                    

Basisinformatie over de Extensie

Naam Notion Themes Notion Themes
ID pglbhommhmgieofbdbnlpcbgcdmoagfo
Officiële URL https://chrome.google.com/webstore/detail/notion-themes/pglbhommhmgieofbdbnlpcbgcdmoagfo
Beschrijving Make your Notion pretty with custom themes.
Bestandsgrootte 27.7 KB
Aantal Installaties 7,000
Huidige Versie 0.0.2
Laatst Bijgewerkt 2022-01-11
Publicatiedatum 2022-01-11
Beoordeling 5.00/5 Totaal 17 Beoordelingen
Ontwikkelaar Yudax
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/notionblog/NotionThemes
Ondersteunde Talen 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
    }
}