Easy Character Counter

count string

什麼是Easy Character Counter?

Easy Character Counter是由https://macha795.com開發的Chrome擴展程式,該擴展的主要功能是“count string”。

擴展截圖

screenshot
screenshot

下載Easy Character Counter擴展crx文件

下載Easy Character Counter擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        Count the number of characters in the selected text.

This is a Chrome Extension that allows you to count the number of characters in the selected text.
The number of characters is displayed in the upper right corner of the screen.

Please use it to check the number of characters in an article or for proofreading.                    

擴展基本資訊

名稱 Easy Character Counter Easy Character Counter
ID copafpdgkjbaoenpeogidcemgmgfflgb
官方網址 https://chromewebstore.google.com/detail/easy-character-counter/copafpdgkjbaoenpeogidcemgmgfflgb
簡介 count string
檔案大小 46.36 KB
安裝次數 25
目前版本 0.0.3
更新時間 2022-06-28
上架時間 2022-06-11
開發者 https://macha795.com
電子郵箱 [email protected]
付費類型 free
支援的語言 en,ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "0.0.3",
    "manifest_version": 3,
    "default_locale": "en",
    "background": {
        "service_worker": "js\/background.js"
    },
    "permissions": [
        "contextMenus"
    ],
    "icons": {
        "64": "img\/icon_64.png",
        "128": "img\/icon_128.png",
        "512": "img\/icon_512.png"
    },
    "content_scripts": [
        {
            "all_frames": false,
            "css": [
                "css\/contents.css"
            ],
            "js": [
                "plugin\/jquery.min.js",
                "js\/contents.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "run_at": "document_idle"
        }
    ],
    "name": "__MSG_extensionName__",
    "description": "__MSG_extensionDescription__",
    "web_accessible_resources": [
        {
            "resources": [
                "img\/close_w.svg"
            ],
            "matches": [
                "https:\/\/*\/*"
            ]
        }
    ]
}