Harambe

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

Harambe là gì?

Harambe là một tiện ích mở rộng Chrome được phát triển bởi 2shobhitsriv6, và tính năng chính của nó là "A simple Chrome extension that replaces references to divine entities with the word "Harambe"".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Harambe

Tải xuống các tệp mở rộng Harambe dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Harambe Harambe
ID abfkfmfjfimmgbfggbabahcmndbdafca
URL Chính Thức https://chromewebstore.google.com/detail/harambe/abfkfmfjfimmgbfggbabahcmndbdafca
Mô tả A simple Chrome extension that replaces references to divine entities with the word "Harambe"
Kích Thước Tệp 85.67 KB
Số Lần Cài Đặt 46
Phiên Bản Hiện Tại 1.0.0
Cập Nhật Lần Cuối 2016-09-06
Ngày Phát Hành 2016-09-06
Đánh Giá 4.20/5 Tổng số 5 Đánh Giá
Nhà Phát Triển 2shobhitsriv6
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}