Notion Word Cloud

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

Apa itu Notion Word Cloud?

Notion Word Cloud adalah ekstensi Chrome yang dikembangkan oleh https://notion-fan.com, dan fitur utamanya adalah "This extension creates a Word cloud from the text within Notion pages.".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Notion Word Cloud

Unduh file ekstensi Notion Word Cloud dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama Notion Word Cloud Notion Word Cloud
ID kgbkopfnaddfgdecpbngccbmcgcbbiak
URL Resmi https://chromewebstore.google.com/detail/notion-word-cloud/kgbkopfnaddfgdecpbngccbmcgcbbiak
Deskripsi This extension creates a Word cloud from the text within Notion pages.
Ukuran File 14.91 MB
Jumlah Instalasi 51
Versi Saat Ini 0.1.0
Terakhir Diperbarui 2023-06-19
Tanggal Publikasi 2023-06-19
Pengembang https://notion-fan.com
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://notion-fan.com/
Bahasa yang Didukung 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"
    ]
}