SwitchCase

Switch selected text to all uppercase or all lowercase.

¿Qué es SwitchCase?

SwitchCase es una extensión de Chrome desarrollada por Ash A., y su función principal es "Switch selected text to all uppercase or all lowercase.".

Capturas de Pantalla de la Extensión

screenshot
screenshot

Descargar Archivo CRX de la Extensión SwitchCase

Descarga archivos de extensión SwitchCase en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre SwitchCase SwitchCase
ID cilpijegbpjdefcbhgjiobbegencnncb
URL Oficial https://chromewebstore.google.com/detail/switchcase/cilpijegbpjdefcbhgjiobbegencnncb
Descripción Switch selected text to all uppercase or all lowercase.
Tamaño del Archivo 10.23 KB
Cantidad de Instalaciones 109
Versión Actual 1.1
Última Actualización 2015-02-01
Fecha de Publicación 2015-02-01
Calificación 1.55/5 Total de 11 Calificaciones
Desarrollador Ash A.
Tipo de Pago free
Idiomas Soportados 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"
        ]
    }
}