Google Result Counter

Automatically counts your Google search results and displays the number of results in the title of the result.

Google Result Counterとは何ですか?

Google Result CounterはPaul Lukicによって開発されたChromeの拡張機能で、その主な機能は「Automatically counts your Google search results and displays the number of results in the title of the result.」です。

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

screenshot
screenshot

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

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

拡張機能の使用方法

                        Do not forget to enable counter upon installation!

Update 1.0.4
 - Fixed counting header for images.
 - Fixed extension firing on wordpress.                    

拡張機能の基本情報

名前 Google Result Counter Google Result Counter
ID oijjnonbajbomjimdmfchfjadndnhfgp
公式URL https://chromewebstore.google.com/detail/google-result-counter/oijjnonbajbomjimdmfchfjadndnhfgp
説明 Automatically counts your Google search results and displays the number of results in the title of the result.
ファイルサイズ 117 KB
インストール数 646
現在のバージョン 1.0.4
最終更新日 2023-08-01
公開日 2023-07-14
評価 4.33/5 合計 6 レビュー
開発者 Paul Lukic
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/paullukic/google-search-counter
ヘルプページのURL https://www.linkedin.com/in/paul-lukic/
対応言語 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Google Result Counter",
    "version": "1.0.4",
    "description": "Automatically counts your Google search results and displays the number of results in the title of the result.",
    "permissions": [
        "storage"
    ],
    "host_permissions": [
        "https:\/\/google.com\/*"
    ],
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "icon16.png",
            "48": "icon48.png",
            "128": "icon128.png"
        }
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ]
}