Harambe

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

Co je Harambe?

Harambe je rozšíření Chrome vyvinuté 2shobhitsriv6, a jeho hlavní funkcí je „A simple Chrome extension that replaces references to divine entities with the word "Harambe"“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Harambe

Stáhněte si soubory rozšíření Harambe ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název Harambe Harambe
ID abfkfmfjfimmgbfggbabahcmndbdafca
Oficiální URL https://chromewebstore.google.com/detail/harambe/abfkfmfjfimmgbfggbabahcmndbdafca
Popis A simple Chrome extension that replaces references to divine entities with the word "Harambe"
Velikost souboru 85.67 KB
Počet instalací 46
Aktuální Verze 1.0.0
Poslední Aktualizace 2016-09-06
Datum Vydání 2016-09-06
Hodnocení 4.20/5 Celkem 5 Hodnocení
Vývojář 2shobhitsriv6
Typ Platby free
Podporované Jazyky 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"
            ]
        }
    ]
}