Notion文字数カウント

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

Notion文字数カウント क्या है?

Notion文字数カウント https://notion-fan.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This is a Chrome extension that counts the number of characters in a Notion page."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Notion文字数カウント एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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"
    ]
}