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. 擴展基本資訊
| 名稱 | |
| ID | kgbkopfnaddfgdecpbngccbmcgcbbiak |
| 官方網址 | 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"
]
} | |