Word Count

Counts the words in the document selection and text entry.

什麼是Word Count?

Word Count是由shawn.hoover開發的Chrome擴展程式,該擴展的主要功能是“Counts the words in the document selection and text entry.”。

擴展截圖

screenshot
screenshot

下載Word Count擴展crx文件

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

擴展使用說明

                        Counts the words in the document selection and text entry. The count is displayed in an icon in the location bar. Use this to track word counts as you type or if you're curious how many words are in part of a web page.                    

擴展基本資訊

名稱 Word Count Word Count
ID cipmjkgfjmkcmjfoidhpjfoihkgggmfk
官方網址 https://chrome.google.com/webstore/detail/word-count/cipmjkgfjmkcmjfoidhpjfoihkgggmfk
簡介 Counts the words in the document selection and text entry.
檔案大小 9.76 KB
安裝次數 195
目前版本 0.4
更新時間 2015-07-30
上架時間 2015-07-30
評分 3.14/5 共 7 次評分
開發者 shawn.hoover
付費類型 free
擴展官網 https://bitbucket.org/shoover/word-count-ext
支援的語言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Word Count",
    "version": "0.4",
    "author": "Shawn Hoover",
    "manifest_version": 2,
    "description": "Counts the words in the document selection and text entry.",
    "icons": {
        "64": "logo64.png",
        "128": "logo128.png"
    },
    "permissions": [
        "tabs"
    ],
    "page_action": {
        "default_title": "Word Count"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    }
}