Block Code Grepper
Prevent annoying Code Grepper results from showing up in your search results.
Co to jest Block Code Grepper?
Block Code Grepper to rozszerzenie Chrome opracowane przez webdev2, a jego główną funkcją jest „Prevent annoying Code Grepper results from showing up in your search results.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Block Code Grepper
Pobierz pliki rozszerzeń Block Code Grepper w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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.
Podstawowe informacje o rozszerzeniu
Nazwa | Block Code Grepper |
ID | cldfgppklfnecbfjhlkaahedfkddmaih |
Oficjalny URL | https://chromewebstore.google.com/detail/block-code-grepper/cldfgppklfnecbfjhlkaahedfkddmaih |
Opis | Prevent annoying Code Grepper results from showing up in your search results. |
Rozmiar pliku | 35.83 KB |
Liczba instalacji | 95 |
Aktualna Wersja | 0.0.0.1 |
Ostatnia Aktualizacja | 2022-04-11 |
Data Publikacji | 2022-04-10 |
Ocena | 4.00/5 Łącznie 4 Oceny |
Deweloper | webdev2 |
[email protected] | |
Typ Płatności | free |
Obsługiwane Języki | 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" } } |