Mocking Spongebob

Changes text and images on a webpage to mocking spongebob

What is Mocking Spongebob?

Mocking Spongebob is a Chrome extension developed by hczdev1, and its main feature is "Changes text and images on a webpage to mocking spongebob".

Extension Screenshots

screenshot

Download Mocking Spongebob Extension CRX File

Download Mocking Spongebob extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Mocking Spongebob Mocking Spongebob
ID ljgehggapknbgaddfkibldlepeghdbko
Official URL https://chrome.google.com/webstore/detail/mocking-spongebob/ljgehggapknbgaddfkibldlepeghdbko
Description Changes text and images on a webpage to mocking spongebob
File Size 419 KB
Installation Count 67
Current Version 1.1
Last Updated 2019-06-28
Publish Date 2019-06-27
Rating 3.00/5 Total 1 Ratings
Developer hczdev1
Email [email protected]
Payment Type free
Supported Languages 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"
    }
}