Harambe

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

Harambeคืออะไร?

Harambe เป็นส่วนขยายของ Chrome ที่พัฒนาโดย 2shobhitsriv6 และคุณลักษณะหลักของมันคือ "A simple Chrome extension that replaces references to divine entities with the word "Harambe""

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Harambe

ดาวน์โหลดไฟล์ส่วนขยาย 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
URL อย่างเป็นทางการ 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"
            ]
        }
    ]
}