Notion Word Cloud
This extension creates a Word cloud from the text within Notion pages.
Notion Word Cloudとは何ですか?
Notion Word Cloudはhttps://notion-fan.comによって開発されたChromeの拡張機能で、その主な機能は「This extension creates a Word cloud from the text within Notion pages.」です。
拡張機能のスクリーンショット
Notion Word Cloud拡張機能のCRXファイルをダウンロード
Notion Word Cloud拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Notionのページ内の文章を解析し、Word Cloud で表示することができます。 Word Cloud は 画像としてダウンロードすることができます。 Text within a Notion page can be parsed and displayed in Word Cloud. Word Cloud can be downloaded as an image.
拡張機能の基本情報
名前 | Notion Word Cloud |
ID | kgbkopfnaddfgdecpbngccbmcgcbbiak |
公式URL | https://chromewebstore.google.com/detail/notion-word-cloud/kgbkopfnaddfgdecpbngccbmcgcbbiak |
説明 | This extension creates a Word cloud from the text within Notion pages. |
ファイルサイズ | 14.91 MB |
インストール数 | 51 |
現在のバージョン | 0.1.0 |
最終更新日 | 2023-06-19 |
公開日 | 2023-06-19 |
開発者 | https://notion-fan.com |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://notion-fan.com/ |
対応言語 | ja |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Notion Word Cloud", "description": "This extension creates a Word cloud from the text within Notion pages.", "version": "0.1.0", "manifest_version": 3, "action": { "default_popup": "popup.html" }, "icons": { "128": "icon128.png" }, "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "https:\/\/www.notion.so\/*" ], "js": [ "content-script.js" ], "run_at": "document_end" } ], "commands": { "_execute_action": { "suggested_key": { "windows": "Ctrl+Shift+H", "mac": "Command+Shift+H" }, "description": "\u62e1\u5f35\u6a5f\u80fd\u3092\u8d77\u52d5" } }, "permissions": [ "storage", "tabs" ] } |