Notion Themes
Make your Notion pretty with custom themes.
Notion Themes क्या है?
Notion Themes Yudax द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Make your Notion pretty with custom themes."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Notion Themes एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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
एक्सटेंशन की मूल जानकारी
नाम | |
ID | pglbhommhmgieofbdbnlpcbgcdmoagfo |
आधिकारिक URL | https://chrome.google.com/webstore/detail/notion-themes/pglbhommhmgieofbdbnlpcbgcdmoagfo |
विवरण | Make your Notion pretty with custom themes. |
फ़ाइल का आकार | 27.7 KB |
स्थापना संख्या | 7,000 |
वर्तमान संस्करण | 0.0.2 |
अंतिम अपडेट | 2022-01-11 |
प्रकाशन तिथि | 2022-01-11 |
रेटिंग | 5.00/5 कुल 17 रेटिंग्स |
डेवलपर | Yudax |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/notionblog/NotionThemes |
समर्थित भाषाएँ | 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 } } |