Notion Themes
Make your Notion pretty with custom themes.
Notion Themesとは何ですか?
Notion ThemesはYudaxによって開発されたChromeの拡張機能で、その主な機能は「Make your Notion pretty with custom themes.」です。
拡張機能のスクリーンショット
Notion Themes拡張機能のCRXファイルをダウンロード
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 |
Eメール | [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 } } |