Harambe
A simple Chrome extension that replaces references to divine entities with the word "Harambe"
¿Qué es Harambe?
Harambe es una extensión de Chrome desarrollada por 2shobhitsriv6, y su función principal es "A simple Chrome extension that replaces references to divine entities with the word "Harambe"".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Harambe
Descarga archivos de extensión Harambe en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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.
Información Básica de la Extensión
Nombre | Harambe |
ID | abfkfmfjfimmgbfggbabahcmndbdafca |
URL Oficial | https://chromewebstore.google.com/detail/harambe/abfkfmfjfimmgbfggbabahcmndbdafca |
Descripción | A simple Chrome extension that replaces references to divine entities with the word "Harambe" |
Tamaño del Archivo | 85.67 KB |
Cantidad de Instalaciones | 46 |
Versión Actual | 1.0.0 |
Última Actualización | 2016-09-06 |
Fecha de Publicación | 2016-09-06 |
Calificación | 4.20/5 Total de 5 Calificaciones |
Desarrollador | 2shobhitsriv6 |
Tipo de Pago | free |
Idiomas Soportados | 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" ] } ] } |