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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Automatically counts your Google search results and displays the number of results in the title of the result."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Google Result Counter एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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"
            ]
        }
    ]
}