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文件

下载Notion文字数カウント扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

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