Harambe

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

什麼是Harambe?

Harambe是由2shobhitsriv6開發的Chrome擴展程式,該擴展的主要功能是“A simple Chrome extension that replaces references to divine entities with the word "Harambe"”。

擴展截圖

screenshot

下載Harambe擴展crx文件

下載Harambe擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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.                    

擴展基本資訊

名稱 Harambe Harambe
ID abfkfmfjfimmgbfggbabahcmndbdafca
官方網址 https://chromewebstore.google.com/detail/harambe/abfkfmfjfimmgbfggbabahcmndbdafca
簡介 A simple Chrome extension that replaces references to divine entities with the word "Harambe"
檔案大小 85.67 KB
安裝次數 46
目前版本 1.0.0
更新時間 2016-09-06
上架時間 2016-09-06
評分 4.20/5 共 5 次評分
開發者 2shobhitsriv6
付費類型 free
支援的語言 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"
            ]
        }
    ]
}