Notion Word Cloud
This extension creates a Word cloud from the text within Notion pages.
Hvad er Notion Word Cloud?
Notion Word Cloud er en Chrome-udvidelse udviklet af https://notion-fan.com, og dens hovedfunktion er "This extension creates a Word cloud from the text within Notion pages.".
Udvidelsesskærmbilleder
Download Notion Word Cloud-udvidelses-CRX-fil
Download Notion Word Cloud-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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.
Grundlæggende oplysninger om udvidelsen
Navn | Notion Word Cloud |
ID | kgbkopfnaddfgdecpbngccbmcgcbbiak |
Officiel URL | https://chromewebstore.google.com/detail/notion-word-cloud/kgbkopfnaddfgdecpbngccbmcgcbbiak |
Beskrivelse | This extension creates a Word cloud from the text within Notion pages. |
Filstørrelse | 14.91 MB |
Antal Installationer | 51 |
Nuværende Version | 0.1.0 |
Senest Opdateret | 2023-06-19 |
Udgivelsesdato | 2023-06-19 |
Udvikler | https://notion-fan.com |
[email protected] | |
Betalingsmetode | free |
Udvidelseswebsted | https://notion-fan.com/ |
Understøttede Sprog | 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" ] } |