Notion Themes
Make your Notion pretty with custom themes.
Τι είναι το Notion Themes;
Το Notion Themes είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Yudax, και η κύρια λειτουργία του είναι "Make your Notion pretty with custom themes.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Notion Themes
Λήψη αρχείων επέκτασης Notion Themes σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
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 } } |