SwitchCase

Switch selected text to all uppercase or all lowercase.

O que é SwitchCase?

SwitchCase é uma extensão do Chrome desenvolvida por Ash A., e sua principal característica é "Switch selected text to all uppercase or all lowercase.".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão SwitchCase

Baixe arquivos de extensão SwitchCase 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

                        Ever realize there's no simple way to capitalize and uncapitalize a selected block of text in the browser?
Or did you leave caps-lock on and want to reverse your all caps text?

Now you can just select your text input, right-click, and choose whether to make text all uppercase or all lowercase.
And best of all, it doesn't open a popup or another tab with your text, it replaces it RIGHT THERE!


Note: Currently does not work on dynamically-loaded text or protected inputs, like Google search and Facebook.                    

Informações Básicas da Extensão

Nome SwitchCase SwitchCase
ID cilpijegbpjdefcbhgjiobbegencnncb
URL Oficial https://chromewebstore.google.com/detail/switchcase/cilpijegbpjdefcbhgjiobbegencnncb
Descrição Switch selected text to all uppercase or all lowercase.
Tamanho do Arquivo 10.23 KB
Contagem de Instalações 109
Versão Atual 1.1
Última Atualização 2015-02-01
Data de Publicação 2015-02-01
Classificação 1.55/5 Total de 11 Avaliações
Desenvolvedor Ash A.
Tipo de Pagamento free
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "SwitchCase",
    "version": "1.1",
    "manifest_version": 2,
    "description": "Switch selected text to all uppercase or all lowercase.",
    "icons": {
        "16": "src\/img\/16.png",
        "48": "src\/img\/48.png"
    },
    "permissions": [
        "contextMenus"
    ],
    "offline_enabled": true,
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*"
            ],
            "js": [
                "src\/js\/content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "src\/js\/background.js"
        ]
    }
}