Notion Word Cloud
This extension creates a Word cloud from the text within Notion pages.
Qu'est-ce que Notion Word Cloud ?
Notion Word Cloud est une extension Chrome développée par https://notion-fan.com, et sa fonction principale est "This extension creates a Word cloud from the text within Notion pages.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Notion Word Cloud
Téléchargez les fichiers d'extension Notion Word Cloud au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | Notion Word Cloud |
ID | kgbkopfnaddfgdecpbngccbmcgcbbiak |
URL Officiel | https://chromewebstore.google.com/detail/notion-word-cloud/kgbkopfnaddfgdecpbngccbmcgcbbiak |
Description | This extension creates a Word cloud from the text within Notion pages. |
Taille du Fichier | 14.91 MB |
Nombre d'Installations | 51 |
Version Actuelle | 0.1.0 |
Dernière Mise à Jour | 2023-06-19 |
Date de Publication | 2023-06-19 |
Développeur | https://notion-fan.com |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://notion-fan.com/ |
Langues Prises en Charge | 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" ] } |