Notion Themes
Make your Notion pretty with custom themes.
What is Notion Themes?
Notion Themes is a Chrome extension developed by Yudax, and its main feature is "Make your Notion pretty with custom themes.".
Extension Screenshots
Download Notion Themes Extension CRX File
Download Notion Themes extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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
Extension Basic Information
Name | |
ID | pglbhommhmgieofbdbnlpcbgcdmoagfo |
Official URL | https://chrome.google.com/webstore/detail/notion-themes/pglbhommhmgieofbdbnlpcbgcdmoagfo |
Description | Make your Notion pretty with custom themes. |
File Size | 27.7 KB |
Installation Count | 7,000 |
Current Version | 0.0.2 |
Last Updated | 2022-01-11 |
Publish Date | 2022-01-11 |
Rating | 5.00/5 Total 17 Ratings |
Developer | Yudax |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/notionblog/NotionThemes |
Supported Languages | 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 } } |