Block Code Grepper

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

Block Code Grepperคืออะไร?

Block Code Grepper เป็นส่วนขยายของ Chrome ที่พัฒนาโดย webdev2 และคุณลักษณะหลักของมันคือ "Prevent annoying Code Grepper results from showing up in your search results."

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Block Code Grepper

ดาวน์โหลดไฟล์ส่วนขยาย Block Code Grepper ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

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