Google rank checker

With Google rank checker you don't need to go up and down to locate your site in google search results.

Google rank checker क्या है?

Google rank checker Vahid Naderi द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "With Google rank checker you don't need to go up and down to locate your site in google search results."।

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

screenshot
screenshot

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

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

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

                        A chrome extension that shows your sites rank for your searches in google.
After adding this extension to the Chrome browser, add your favorite website to the list and then search for the keyword you want in Google. When the page is fully loaded, the number of  your websites which are in the top 100 will be shown on the extension logo and by opening the list of this extension, you can see the rank of each website.
Note: The rank shown on the extension's pop-up may be different from what you see in the results that's because it uses a cookie free request to fetch the top 100 google results which is more like searching a keyword in incognito mode and it should be closer to what your audience may see.                    

एक्सटेंशन की मूल जानकारी

नाम Google rank checker Google rank checker
ID ehgbmeaekkaeajmapeefcolejlaamdip
आधिकारिक URL https://chromewebstore.google.com/detail/google-rank-checker/ehgbmeaekkaeajmapeefcolejlaamdip
विवरण With Google rank checker you don't need to go up and down to locate your site in google search results.
फ़ाइल का आकार 64.95 KB
स्थापना संख्या 12,175
वर्तमान संस्करण 0.6.0
अंतिम अपडेट 2022-02-05
प्रकाशन तिथि 2020-01-08
रेटिंग 3.77/5 कुल 13 रेटिंग्स
डेवलपर Vahid Naderi
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/VahidNaderi/googlerankchecker
समर्थित भाषाएँ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Google rank checker",
    "version": "0.6.0",
    "description": "With Google rank checker you don't need to go up and down to locate your site in google search results.",
    "permissions": [
        "tabs",
        "activeTab",
        "storage"
    ],
    "host_permissions": [
        "https:\/\/www.google.com\/"
    ],
    "background": {
        "service_worker": "bg-loader.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.google.com\/*"
            ],
            "js": [
                "storage.js",
                "content.js"
            ],
            "css": [
                "styles.css"
            ]
        }
    ],
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "images\/pagerank16.png",
            "32": "images\/pagerank32.png",
            "48": "images\/pagerank48.png",
            "128": "images\/pagerank128.png"
        }
    },
    "icons": {
        "16": "images\/pagerank16.png",
        "32": "images\/pagerank32.png",
        "48": "images\/pagerank48.png",
        "128": "images\/pagerank128.png"
    },
    "options_page": "settings.html"
}