Spongebobify

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

Was ist Spongebobify?

Spongebobify ist eine Chrome-Erweiterung, die von nicholaswang2000 entwickelt wurde, und ihr Hauptmerkmal ist "Easily Spongebobify your text by highlighting or pasting into this extension window".

Erweiterungsscreenshots

screenshot
screenshot
screenshot
screenshot

Spongebobify-Erweiterungs-CRX-Datei herunterladen

Laden Sie Spongebobify-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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!                    

Grundlegende Informationen zur Erweiterung

Name Spongebobify Spongebobify
ID kjdlnkopbcdbnjcgipilmabafdoofiof
Offizielle URL https://chromewebstore.google.com/detail/spongebobify/kjdlnkopbcdbnjcgipilmabafdoofiof
Beschreibung Easily Spongebobify your text by highlighting or pasting into this extension window
Dateigröße 157 KB
Installationsanzahl 65
Aktuelle Version 1.0.0
Letztes Update 2020-07-14
Veröffentlichungsdatum 2020-07-14
Bewertung 5.00/5 Insgesamt 3 Bewertungen
Entwickler nicholaswang2000
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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"
    ]
}