Notion Themes
Make your Notion pretty with custom themes.
Apa itu Notion Themes?
Notion Themes adalah ekstensi Chrome yang dikembangkan oleh Yudax, dan fitur utamanya adalah "Make your Notion pretty with custom themes.".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Notion Themes
Unduh file ekstensi Notion Themes dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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
Informasi Dasar Ekstensi
Nama | |
ID | pglbhommhmgieofbdbnlpcbgcdmoagfo |
URL Resmi | https://chrome.google.com/webstore/detail/notion-themes/pglbhommhmgieofbdbnlpcbgcdmoagfo |
Deskripsi | Make your Notion pretty with custom themes. |
Ukuran File | 27.7 KB |
Jumlah Instalasi | 7,000 |
Versi Saat Ini | 0.0.2 |
Terakhir Diperbarui | 2022-01-11 |
Tanggal Publikasi | 2022-01-11 |
Penilaian | 5.00/5 Total 17 Penilaian |
Pengembang | Yudax |
[email protected] | |
Tipe Pembayaran | free |
Situs Ekstensi | https://github.com/notionblog/NotionThemes |
Bahasa yang Didukung | 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 } } |