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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Paul Lukic และคุณลักษณะหลักของมันคือ "Automatically counts your Google search results and displays the number of results in the title of the result."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Google Result Counter

ดาวน์โหลดไฟล์ส่วนขยาย 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"
            ]
        }
    ]
}