Word Count on Webpage By Warp Vessel

A simple chrome extension that allows you to instantly see the word count on the current webpage.

什麼是Word Count on Webpage By Warp Vessel?

Word Count on Webpage By Warp Vessel是由Warp Vessel Apps開發的Chrome擴展程式,該擴展的主要功能是“A simple chrome extension that allows you to instantly see the word count on the current webpage.”。

擴展截圖

screenshot
screenshot

下載Word Count on Webpage By Warp Vessel擴展crx文件

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

擴展使用說明

                        A simple chrome extension that allows you to instantly see the word count on the current webpage.                    

擴展基本資訊

名稱 Word Count on Webpage By Warp Vessel Word Count on Webpage By Warp Vessel
ID poojadbpgpkiokkenipihadhecgphkfh
官方網址 https://chromewebstore.google.com/detail/word-count-on-webpage-by/poojadbpgpkiokkenipihadhecgphkfh
簡介 A simple chrome extension that allows you to instantly see the word count on the current webpage.
檔案大小 6.48 KB
安裝次數 321
目前版本 1.02
更新時間 2019-05-30
上架時間 2019-05-24
評分 3.75/5 共 4 次評分
開發者 Warp Vessel Apps
電子郵箱 [email protected]
付費類型 free
支援的語言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Word Count on Webpage By Warp Vessel",
    "version": "1.02",
    "manifest_version": 2,
    "permissions": [
        "tabs"
    ],
    "icons": {
        "128": "icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "run_at": "document_end",
            "js": [
                "content.js"
            ]
        }
    ],
    "browser_action": {
        "default_title": "Word Count By Warp Vessel",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    }
}