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
电子邮箱 [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"
            ]
        }
    ]
}