Spongebobify

Easily Spongebobify your text by highlighting or pasting into this extension window

Vad är Spongebobify?

Spongebobify är en Chrome-tillägg utvecklad av nicholaswang2000, och dess huvudfunktion är "Easily Spongebobify your text by highlighting or pasting into this extension window".

Tilläggsskärmbilder

screenshot
screenshot
screenshot
screenshot

Ladda ner Spongebobify-förlängningens CRX-fil

Ladda ner Spongebobify-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        Spongebobifying text has never been easier! You can spongebobify by simply clicking on the extension popup window and then entering text. You can also spongebobify by highlighting any text you see on Chrome, and right-clicking 'Spongebobify'. This will insert the spongebobified text right into your browser for you to copy and paste anywhere. Spongebobify with ease however you like with this extension!                    

Grundläggande Information om Tillägg

Namn Spongebobify Spongebobify
ID kjdlnkopbcdbnjcgipilmabafdoofiof
Officiell webbadress https://chromewebstore.google.com/detail/spongebobify/kjdlnkopbcdbnjcgipilmabafdoofiof
Beskrivning Easily Spongebobify your text by highlighting or pasting into this extension window
Filstorlek 157 KB
Antal Installationer 65
Aktuell Version 1.0.0
Senast Uppdaterad 2020-07-14
Publiceringsdatum 2020-07-14
Betyg 5.00/5 Totalt 3 Betyg
Utvecklare nicholaswang2000
E-post [email protected]
Betalningssätt free
Stödda Språk en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Spongebobify",
    "description": "Easily Spongebobify your text by highlighting or pasting into this extension window",
    "version": "1.0.0",
    "author": "Nicholas Wang",
    "icons": {
        "16": "images\/icon_16.png",
        "32": "images\/icon_32.png",
        "48": "images\/icon_48.png",
        "64": "images\/icon_64.png",
        "128": "images\/icon_128.png"
    },
    "browser_action": {
        "default_icon": "images\/icon_16.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "js\/popup.js"
            ]
        }
    ],
    "background": {
        "persistent": true,
        "scripts": [
            "js\/spongebobify.js"
        ]
    },
    "permissions": [
        "activeTab",
        "contextMenus"
    ]
}