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
官方網址 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
電子郵箱 [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"
            ]
        }
    ]
}