Notion Themes
Make your Notion pretty with custom themes.
Qu'est-ce que Notion Themes ?
Notion Themes est une extension Chrome développée par Yudax, et sa fonction principale est "Make your Notion pretty with custom themes.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Notion Themes
Téléchargez les fichiers d'extension Notion Themes au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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
Informations de Base sur l'Extension
Nom | |
ID | pglbhommhmgieofbdbnlpcbgcdmoagfo |
URL Officiel | https://chrome.google.com/webstore/detail/notion-themes/pglbhommhmgieofbdbnlpcbgcdmoagfo |
Description | Make your Notion pretty with custom themes. |
Taille du Fichier | 27.7 KB |
Nombre d'Installations | 7,000 |
Version Actuelle | 0.0.2 |
Dernière Mise à Jour | 2022-01-11 |
Date de Publication | 2022-01-11 |
Évaluation | 5.00/5 Total 17 Évaluations |
Développeur | Yudax |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/notionblog/NotionThemes |
Langues Prises en Charge | 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 } } |