Word Counter

Counting the amount of a given word in the current page

Word Counterとは何ですか?

Word Counterはchatjonsmediaによって開発されたChromeの拡張機能で、その主な機能は「Counting the amount of a given word in the current page」です。

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

screenshot

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

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

拡張機能の使用方法

                        Word Counter is a fun extension that will let the user count how many words appear in a page.                    

拡張機能の基本情報

名前 Word Counter Word Counter
ID ledamfbeelplcjfjclabbckmglgkmhdf
公式URL https://chrome.google.com/webstore/detail/word-counter/ledamfbeelplcjfjclabbckmglgkmhdf
説明 Counting the amount of a given word in the current page
ファイルサイズ 14.55 KB
インストール数 2,959
現在のバージョン 1
最終更新日 2022-12-05
公開日 2022-12-05
開発者 chatjonsmedia
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://home.ujhimselvepost.info/
ヘルプページのURL https://home.ujhimselvepost.info/contact.html
対応言語 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "Counting the amount of a given word in the current page",
    "icons": {
        "128": "logo.png"
    },
    "action": {
        "default_icon": "logo.png",
        "default_title": "Word Counter",
        "default_popup": "popup.html"
    },
    "manifest_version": 3,
    "name": "Word Counter",
    "version": "1",
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ]
}