Harambe

A simple Chrome extension that replaces references to divine entities with the word "Harambe"

Cos'è Harambe?

Harambe è un'estensione di Chrome sviluppata da 2shobhitsriv6, e la sua funzione principale è "A simple Chrome extension that replaces references to divine entities with the word "Harambe"".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Harambe

Scarica i file di estensione Harambe in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Harambe Harambe
ID abfkfmfjfimmgbfggbabahcmndbdafca
URL Ufficiale https://chromewebstore.google.com/detail/harambe/abfkfmfjfimmgbfggbabahcmndbdafca
Descrizione A simple Chrome extension that replaces references to divine entities with the word "Harambe"
Dimensione del File 85.67 KB
Conteggio Installazioni 46
Versione Corrente 1.0.0
Ultimo Aggiornamento 2016-09-06
Data di Pubblicazione 2016-09-06
Valutazione 4.20/5 Totale 5 Valutazioni
Sviluppatore 2shobhitsriv6
Tipo di Pagamento free
Lingue Supportate 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"
            ]
        }
    ]
}