Mocking Spongebob

Changes text and images on a webpage to mocking spongebob

Mocking Spongebobとは何ですか?

Mocking Spongebobはhczdev1によって開発されたChromeの拡張機能で、その主な機能は「Changes text and images on a webpage to mocking spongebob」です。

拡張機能のスクリーンショット

screenshot

Mocking Spongebob拡張機能のCRXファイルをダウンロード

Mocking Spongebob拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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
Eメール [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"
    }
}