Notion文字数カウント

This is a Chrome extension that counts the number of characters in a Notion page.

Notion文字数カウント란 무엇입니까?

Notion文字数カウント은(는) https://notion-fan.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This is a Chrome extension that counts the number of characters in a Notion page."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Notion文字数カウント 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Notion ページ内の文字数をカウントすることができます。
スペース有り、スペース無しでカウントできます。
またコードブロックは、全体の文字数とは別にカウントすることもできます。

You can count the number of characters in a Notion page, with or without spaces. Additionally, you can choose to count code blocks separately from the rest of the page.                    

확장 프로그램 기본 정보

이름 Notion文字数カウント Notion文字数カウント
ID cgdlnhohdpngigmkhfnifonmaedkhgfn
공식 URL https://chromewebstore.google.com/detail/notion%E6%96%87%E5%AD%97%E6%95%B0%E3%82%AB%E3%82%A6%E3%83%B3%E3%83%88/cgdlnhohdpngigmkhfnifonmaedkhgfn
설명 This is a Chrome extension that counts the number of characters in a Notion page.
파일 크기 21.42 KB
설치 횟수 1,313
현재 버전 0.1.0
최근 업데이트 2023-05-07
출시 날짜 2023-05-07
평점 4.00/5 총 3 개의 평점
개발자 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\u6587\u5b57\u6570\u30ab\u30a6\u30f3\u30c8",
    "description": "This is a Chrome extension that counts the number of characters in a Notion page.",
    "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+Y",
                "mac": "Command+Shift+Y"
            },
            "description": "Counting Characters"
        }
    },
    "permissions": [
        "storage"
    ]
}