Wordcounter

Displays a real-time word count while writing in Google Docs, as well as milestone markers every 500 words.

Wordcounterとは何ですか?

WordcounterはSahil Lavingiaによって開発されたChromeの拡張機能で、その主な機能は「Displays a real-time word count while writing in Google Docs, as well as milestone markers every 500 words.」です。

拡張機能のスクリーンショット

screenshot

Wordcounter拡張機能のCRXファイルをダウンロード

Wordcounter拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        Wordcounter shows a real-time word count as you type in any Google Docs document. You can toggle it off and on by clicking on the icon in the top right corner of your browser.

It also adds milestone markers every 500 words. Motivating!                    

拡張機能の基本情報

名前 Wordcounter Wordcounter
ID lhggjeapfnagbjlklclkmlihhoandlib
公式URL https://chromewebstore.google.com/detail/wordcounter/lhggjeapfnagbjlklclkmlihhoandlib
説明 Displays a real-time word count while writing in Google Docs, as well as milestone markers every 500 words.
ファイルサイズ 45.97 KB
インストール数 3,718
現在のバージョン 1.3
最終更新日 2018-08-02
公開日 2018-08-01
評価 2.62/5 合計 37 レビュー
開発者 Sahil Lavingia
支払い方法 free
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Wordcounter",
    "version": "1.3",
    "description": "Displays a real-time word count while writing in Google Docs, as well as milestone markers every 500 words.",
    "permissions": [
        "activeTab",
        "storage"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/docs.google.com\/*"
            ],
            "css": [
                "style.css"
            ],
            "js": [
                "jquery-3.3.1.min.js",
                "content.js"
            ]
        }
    ],
    "browser_action": {
        "name": "Click to toggle Wordcounter on or off"
    },
    "icons": {
        "128": "icon.png"
    },
    "manifest_version": 2
}