Spongebobify

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

O que é Spongebobify?

Spongebobify é uma extensão do Chrome desenvolvida por nicholaswang2000, e sua principal característica é "Easily Spongebobify your text by highlighting or pasting into this extension window".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Spongebobify

Baixe arquivos de extensão Spongebobify no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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!                    

Informações Básicas da Extensão

Nome Spongebobify Spongebobify
ID kjdlnkopbcdbnjcgipilmabafdoofiof
URL Oficial https://chromewebstore.google.com/detail/spongebobify/kjdlnkopbcdbnjcgipilmabafdoofiof
Descrição Easily Spongebobify your text by highlighting or pasting into this extension window
Tamanho do Arquivo 157 KB
Contagem de Instalações 65
Versão Atual 1.0.0
Última Atualização 2020-07-14
Data de Publicação 2020-07-14
Classificação 5.00/5 Total de 3 Avaliações
Desenvolvedor nicholaswang2000
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados 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"
    ]
}