Google Result Counter

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

Google Result Counter là gì?

Google Result Counter là một tiện ích mở rộng Chrome được phát triển bởi Paul Lukic, và tính năng chính của nó là "Automatically counts your Google search results and displays the number of results in the title of the result.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Google Result Counter

Tải xuống các tệp mở rộng Google Result Counter dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        Do not forget to enable counter upon installation!

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

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Google Result Counter Google Result Counter
ID oijjnonbajbomjimdmfchfjadndnhfgp
URL Chính Thức https://chromewebstore.google.com/detail/google-result-counter/oijjnonbajbomjimdmfchfjadndnhfgp
Mô tả Automatically counts your Google search results and displays the number of results in the title of the result.
Kích Thước Tệp 117 KB
Số Lần Cài Đặt 646
Phiên Bản Hiện Tại 1.0.4
Cập Nhật Lần Cuối 2023-08-01
Ngày Phát Hành 2023-07-14
Đánh Giá 4.33/5 Tổng số 6 Đánh Giá
Nhà Phát Triển Paul Lukic
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/paullukic/google-search-counter
URL Trang Trợ Giúp https://www.linkedin.com/in/paul-lukic/
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}