Replacer
Replaces all images with an image of your choice
Co to jest Replacer?
Replacer to rozszerzenie Chrome opracowane przez michaelm244, a jego główną funkcją jest „Replaces all images with an image of your choice”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Replacer
Pobierz pliki rozszerzeń Replacer 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
There's all these extensions that let you replace all images on the page with ____. So, why not make your own? Just enter something you want to search, and all the images on the page will get replaced with that.
Podstawowe informacje o rozszerzeniu
Nazwa | |
ID | nkkofabfinoleplbkkbmhhkjmomdgpag |
Oficjalny URL | https://chrome.google.com/webstore/detail/replacer/nkkofabfinoleplbkkbmhhkjmomdgpag |
Opis | Replaces all images with an image of your choice |
Rozmiar pliku | 606 KB |
Liczba instalacji | 294 |
Aktualna Wersja | 1.0 |
Ostatnia Aktualizacja | 2014-01-18 |
Data Publikacji | 2014-01-18 |
Ocena | 2.07/5 Łącznie 14 Oceny |
Deweloper | michaelm244 |
Typ Płatności | free |
Strona Rozszerzenia | https://github.com/michaelm244/replacer |
Obsługiwane Języki | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Replacer", "description": "Replaces all images with an image of your choice", "version": "1.0", "manifest_version": 2, "permissions": [ "tabs", "https:\/\/www.google.com\/" ], "content_scripts": [ { "js": [ "background.js" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ] } ], "browser_action": { "default_popup": "popup.html" }, "content_security_policy": "script-src 'self' 'unsafe-eval' https:\/\/www.google.com; object-src 'self'" } |