Notion Themes
Make your Notion pretty with custom themes.
Co je Notion Themes?
Notion Themes je rozšíření Chrome vyvinuté Yudax, a jeho hlavní funkcí je „Make your Notion pretty with custom themes.“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Notion Themes
Stáhněte si soubory rozšíření Notion Themes ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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
Základní Informace o Rozšíření
Název | |
ID | pglbhommhmgieofbdbnlpcbgcdmoagfo |
Oficiální URL | https://chrome.google.com/webstore/detail/notion-themes/pglbhommhmgieofbdbnlpcbgcdmoagfo |
Popis | Make your Notion pretty with custom themes. |
Velikost souboru | 27.7 KB |
Počet instalací | 7,000 |
Aktuální Verze | 0.0.2 |
Poslední Aktualizace | 2022-01-11 |
Datum Vydání | 2022-01-11 |
Hodnocení | 5.00/5 Celkem 17 Hodnocení |
Vývojář | Yudax |
[email protected] | |
Typ Platby | free |
Webové stránky Rozšíření | https://github.com/notionblog/NotionThemes |
Podporované Jazyky | 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 } } |