Mocking Spongebob

Changes text and images on a webpage to mocking spongebob

ما هو Mocking Spongebob؟

Mocking Spongebob هو إضافة Chrome تم تطويرها بواسطة hczdev1، والميزة الرئيسية لها هي "Changes text and images on a webpage to mocking spongebob".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Mocking Spongebob

قم بتنزيل ملفات الامتداد Mocking Spongebob بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

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

                        When clicked will, transform all text to the mocking Spongebob meme, JuSt LiKe ThIs. Will also transform all images on a page to the mocking Spongebob meme itself. Refresh the page to reset to normal.                    

معلومات أساسية عن التمديد

الاسم Mocking Spongebob Mocking Spongebob
ID ljgehggapknbgaddfkibldlepeghdbko
عنوان URL الرسمي https://chrome.google.com/webstore/detail/mocking-spongebob/ljgehggapknbgaddfkibldlepeghdbko
الوصف Changes text and images on a webpage to mocking spongebob
حجم الملف 419 KB
عدد التثبيتات 67
النسخة الحالية 1.1
آخر تحديث 2019-06-28
تاريخ النشر 2019-06-27
تقييم 3.00/5 مجموع تقييمات 1
المطور hczdev1
البريد الإلكتروني [email protected]
نوع الدفع free
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Mocking Spongebob",
    "version": "1.1",
    "description": "Changes text and images on a webpage to mocking spongebob",
    "manifest_version": 2,
    "web_accessible_resources": [
        "image\/*.jpg"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "activeTab"
    ],
    "browser_action": {
        "defualt_icon": "images\/spongebob_128.png"
    },
    "icons": {
        "16": "images\/spongebob_16.png",
        "48": "images\/spongebob_48.png",
        "128": "images\/spongebob_128.png"
    }
}