Notion Themes
Make your Notion pretty with custom themes.
Notion Themes là gì?
Notion Themes là một tiện ích mở rộng Chrome được phát triển bởi Yudax, và tính năng chính của nó là "Make your Notion pretty with custom themes.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Notion Themes
Tải xuống các tệp mở rộng Notion Themes dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | pglbhommhmgieofbdbnlpcbgcdmoagfo |
URL Chính Thức | https://chrome.google.com/webstore/detail/notion-themes/pglbhommhmgieofbdbnlpcbgcdmoagfo |
Mô tả | Make your Notion pretty with custom themes. |
Kích Thước Tệp | 27.7 KB |
Số Lần Cài Đặt | 7,000 |
Phiên Bản Hiện Tại | 0.0.2 |
Cập Nhật Lần Cuối | 2022-01-11 |
Ngày Phát Hành | 2022-01-11 |
Đánh Giá | 5.00/5 Tổng số 17 Đánh Giá |
Nhà Phát Triển | Yudax |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/notionblog/NotionThemes |
Ngôn Ngữ Được Hỗ Trợ | 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 } } |