Word Counter

Displays word count in the extensions toolbar.

什麼是Word Counter?

Word Counter是由chriham3開發的Chrome擴展程式,該擴展的主要功能是“Displays word count in the extensions toolbar.”。

擴展截圖

screenshot

下載Word Counter擴展crx文件

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

擴展使用說明

                        Simple word counting extension. Simply select the text you wish to count, and the word count will appear on the icon at the extensions bar in the top right corner.                    

擴展基本資訊

名稱 Word Counter Word Counter
ID ipmlaaleafabnehpmokomegjjodbmoik
官方網址 https://chromewebstore.google.com/detail/word-counter/ipmlaaleafabnehpmokomegjjodbmoik
簡介 Displays word count in the extensions toolbar.
檔案大小 9.84 KB
安裝次數 411
目前版本 0.2
更新時間 2017-12-05
上架時間 2017-12-04
評分 4.00/5 共 7 次評分
開發者 chriham3
付費類型 free
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Word Counter",
    "description": "Displays word count in the extensions toolbar.",
    "version": "0.2",
    "permissions": [
        "activeTab"
    ],
    "icons": {
        "32": "icon32.png",
        "48": "icon32.png",
        "128": "icon32.png"
    },
    "browser_action": {
        "default_icon": "icon32.png",
        "default_title": "Word Counter",
        "default_popup": "instructions.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "checker.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "wordcounter.js"
        ]
    }
}