Spongebobify

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

Cos'è Spongebobify?

Spongebobify è un'estensione di Chrome sviluppata da nicholaswang2000, e la sua funzione principale è "Easily Spongebobify your text by highlighting or pasting into this extension window".

Screenshot dell'Estensione

screenshot
screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Spongebobify

Scarica i file di estensione Spongebobify in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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!                    

Informazioni di Base sull'Estensione

Nome Spongebobify Spongebobify
ID kjdlnkopbcdbnjcgipilmabafdoofiof
URL Ufficiale https://chromewebstore.google.com/detail/spongebobify/kjdlnkopbcdbnjcgipilmabafdoofiof
Descrizione Easily Spongebobify your text by highlighting or pasting into this extension window
Dimensione del File 157 KB
Conteggio Installazioni 65
Versione Corrente 1.0.0
Ultimo Aggiornamento 2020-07-14
Data di Pubblicazione 2020-07-14
Valutazione 5.00/5 Totale 3 Valutazioni
Sviluppatore nicholaswang2000
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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"
    ]
}