Block Code Grepper

Prevent annoying Code Grepper results from showing up in your search results.

Block Code Grepper क्या है?

Block Code Grepper webdev2 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Prevent annoying Code Grepper results from showing up in your search results."।

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

screenshot

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

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

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

                        Prevent annoying Code Grepper results from showing up in your search results. This extension hides Code Grepper results when searching on Google. Improve your productivity when searching for code-related questions.                    

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

नाम Block Code Grepper Block Code Grepper
ID cldfgppklfnecbfjhlkaahedfkddmaih
आधिकारिक URL https://chromewebstore.google.com/detail/block-code-grepper/cldfgppklfnecbfjhlkaahedfkddmaih
विवरण Prevent annoying Code Grepper results from showing up in your search results.
फ़ाइल का आकार 35.83 KB
स्थापना संख्या 95
वर्तमान संस्करण 0.0.0.1
अंतिम अपडेट 2022-04-11
प्रकाशन तिथि 2022-04-10
रेटिंग 4.00/5 कुल 4 रेटिंग्स
डेवलपर webdev2
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Block Code Grepper",
    "description": "Prevent annoying Code Grepper results from showing up in your search results.",
    "version": "0.0.0.1",
    "manifest_version": 3,
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.google.com\/*"
            ],
            "js": [
                "jquery-3.6.0.min.js",
                "background.js"
            ],
            "run_at": "document_end"
        }
    ],
    "action": {
        "default_popup": "popup.html"
    },
    "icons": {
        "32": "icon2.png"
    }
}