Harambe
A simple Chrome extension that replaces references to divine entities with the word "Harambe"
Co to jest Harambe?
Harambe to rozszerzenie Chrome opracowane przez 2shobhitsriv6, a jego główną funkcją jest „A simple Chrome extension that replaces references to divine entities with the word "Harambe"”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Harambe
Pobierz pliki rozszerzeń Harambe 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
Replace all references to religious deities on the page with the word "Harambe." Change the title of the page to "HARAMBE WAS HERE." Try it out: Install the extension and go to http://www.everystudent.com/features/isthere.html Press the gorilla on the top right corner.
Podstawowe informacje o rozszerzeniu
Nazwa | Harambe |
ID | abfkfmfjfimmgbfggbabahcmndbdafca |
Oficjalny URL | https://chromewebstore.google.com/detail/harambe/abfkfmfjfimmgbfggbabahcmndbdafca |
Opis | A simple Chrome extension that replaces references to divine entities with the word "Harambe" |
Rozmiar pliku | 85.67 KB |
Liczba instalacji | 46 |
Aktualna Wersja | 1.0.0 |
Ostatnia Aktualizacja | 2016-09-06 |
Data Publikacji | 2016-09-06 |
Ocena | 4.20/5 Łącznie 5 Oceny |
Deweloper | 2shobhitsriv6 |
Typ Płatności | free |
Obsługiwane Języki | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Harambe", "version": "1.0.0", "description": "A simple Chrome extension that replaces references to divine entities with the word \"Harambe\"", "browser_action": { "default_title": "turn on Harambe" }, "icons": { "128": "Harambe.png" }, "background": { "scripts": [ "background.js", "jquery-3.1.0.js", "replaceText.js" ], "persistent:": false }, "permissions": [ "activeTab" ], "content_scripts": [ { "matches": [ "http:\/\/*\/*" ], "js": [ "background.js", "jquery-3.1.0.js", "replaceText.js" ] } ] } |