Harambe

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

What is Harambe?

Harambe is a Chrome extension developed by 2shobhitsriv6, and its main feature is "A simple Chrome extension that replaces references to divine entities with the word "Harambe"".

Extension Screenshots

screenshot

Download Harambe Extension CRX File

Download Harambe extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Harambe Harambe
ID abfkfmfjfimmgbfggbabahcmndbdafca
Official URL https://chromewebstore.google.com/detail/harambe/abfkfmfjfimmgbfggbabahcmndbdafca
Description A simple Chrome extension that replaces references to divine entities with the word "Harambe"
File Size 85.67 KB
Installation Count 46
Current Version 1.0.0
Last Updated 2016-09-06
Publish Date 2016-09-06
Rating 4.20/5 Total 5 Ratings
Developer 2shobhitsriv6
Payment Type free
Supported Languages 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"
            ]
        }
    ]
}