Notion Helper
An extension to enhance your experience with Notion
Notion Helperとは何ですか?
Notion Helperはmeshkani.moによって開発されたChromeの拡張機能で、その主な機能は「An extension to enhance your experience with Notion」です。
拡張機能のスクリーンショット
Notion Helper拡張機能のCRXファイルをダウンロード
Notion Helper拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Features: - RTL - Custom Font (Type in the name of the font you want. Make sure that the font is installed on your computer) If you need any other features that are missing, let me know in the comments.
拡張機能の基本情報
名前 | Notion Helper |
ID | jckgilkkfgibbeokglganbfdipcblibd |
公式URL | https://chromewebstore.google.com/detail/notion-helper/jckgilkkfgibbeokglganbfdipcblibd |
説明 | An extension to enhance your experience with Notion |
ファイルサイズ | 47.12 KB |
インストール数 | 2,208 |
現在のバージョン | 1.0.1 |
最終更新日 | 2021-10-01 |
公開日 | 2021-09-23 |
評価 | 5.00/5 合計 29 レビュー |
開発者 | meshkani.mo |
Eメール | [email protected] |
支払い方法 | free |
対応言語 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Notion Helper", "version": "1.0.1", "description": "An extension to enhance your experience with Notion", "manifest_version": 2, "permissions": [ "storage", "activeTab", "*:\/\/*.notion.so\/*", "*:\/\/*.notion.site\/*" ], "browser_action": { "default_popup": "src\/popup\/popup.html", "default_icon": { "32": "\/logo\/logo-32.png", "48": "\/logo\/logo-48.png", "128": "\/logo\/logo-128.png" } }, "background": { "scripts": [ "src\/background.js" ] }, "content_scripts": [ { "matches": [ "*:\/\/*.notion.so\/*", "*:\/\/*.notion.site\/*" ], "js": [ "src\/scripts\/rtl.js", "src\/scripts\/font.js" ], "all_frames": true } ], "icons": { "32": "\/logo\/logo-32.png", "48": "\/logo\/logo-48.png", "128": "\/logo\/logo-128.png" } } |