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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension creates a Word cloud from the text within Notion pages."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Notion Word Cloud एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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 |
ईमेल | [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" ] } |