Notion Word Cloud
This extension creates a Word cloud from the text within Notion pages.
Notion Word Cloudคืออะไร?
Notion Word Cloud เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://notion-fan.com และคุณลักษณะหลักของมันคือ "This extension creates a Word cloud from the text within Notion pages."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Notion Word Cloud
ดาวน์โหลดไฟล์ส่วนขยาย 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 |
อีเมล | [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" ] } |