Google Ads Hider

This extension hides ads when searching at Google

Google Ads Hider क्या है?

Google Ads Hider doratomer द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension hides ads when searching at Google"।

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

screenshot

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

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

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

                        When you search something to purchase at google, we will hide/blur/mark the ads  that you can search without paying more at random websites.                    

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

नाम Google Ads Hider Google Ads Hider
ID hphgneaeckdmikgklodjnapgjdkjamcg
आधिकारिक URL https://chromewebstore.google.com/detail/google-ads-hider/hphgneaeckdmikgklodjnapgjdkjamcg
विवरण This extension hides ads when searching at Google
फ़ाइल का आकार 23.87 KB
स्थापना संख्या 28
वर्तमान संस्करण 0.1.2
अंतिम अपडेट 2021-05-16
प्रकाशन तिथि 2021-05-05
रेटिंग 5.00/5 कुल 1 रेटिंग्स
डेवलपर doratomer
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Google Ads Hider",
    "description": "This extension hides ads when searching at Google",
    "version": "0.1.2",
    "manifest_version": 2,
    "icons": {
        "128": ".\/ad_hider_128.png"
    },
    "options_page": ".\/options.html",
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "include_globs": [
                "http:\/\/*.google.*\/search*",
                "https:\/\/*.google.*\/search*"
            ],
            "js": [
                "content_script.js"
            ],
            "css": [
                "myStyle.css"
            ]
        }
    ],
    "browser_action": {
        "default_title": "Privacy Extension For WhatsApp Web",
        "default_popup": ".\/popup.html",
        "default_icon": {
            "32": ".\/ad_hider_128.png"
        }
    },
    "permissions": [
        "https:\/\/www.google.com\/*",
        "storage"
    ]
}