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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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"
            ]
        }
    ]
}