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."입니다.

확장 프로그램 스크린샷

screenshot

Notion Word Cloud 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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 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"
    ]
}