Notion Word Cloud

This extension creates a Word cloud from the text within Notion pages.

Notion Word Cloud là gì?

Notion Word Cloud là một tiện ích mở rộng Chrome được phát triển bởi https://notion-fan.com, và tính năng chính của nó là "This extension creates a Word cloud from the text within Notion pages.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Notion Word Cloud

Tải xuống các tệp mở rộng Notion Word Cloud dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Notion Word Cloud Notion Word Cloud
ID kgbkopfnaddfgdecpbngccbmcgcbbiak
URL Chính Thức https://chromewebstore.google.com/detail/notion-word-cloud/kgbkopfnaddfgdecpbngccbmcgcbbiak
Mô tả This extension creates a Word cloud from the text within Notion pages.
Kích Thước Tệp 14.91 MB
Số Lần Cài Đặt 51
Phiên Bản Hiện Tại 0.1.0
Cập Nhật Lần Cuối 2023-06-19
Ngày Phát Hành 2023-06-19
Nhà Phát Triển https://notion-fan.com
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://notion-fan.com/
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}