SwitchCase

Switch selected text to all uppercase or all lowercase.

Qu'est-ce que SwitchCase ?

SwitchCase est une extension Chrome développée par Ash A., et sa fonction principale est "Switch selected text to all uppercase or all lowercase.".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension SwitchCase

Téléchargez les fichiers d'extension SwitchCase au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom SwitchCase SwitchCase
ID cilpijegbpjdefcbhgjiobbegencnncb
URL Officiel https://chromewebstore.google.com/detail/switchcase/cilpijegbpjdefcbhgjiobbegencnncb
Description Switch selected text to all uppercase or all lowercase.
Taille du Fichier 10.23 KB
Nombre d'Installations 109
Version Actuelle 1.1
Dernière Mise à Jour 2015-02-01
Date de Publication 2015-02-01
Évaluation 1.55/5 Total 11 Évaluations
Développeur Ash A.
Type de Paiement free
Langues Prises en Charge 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"
        ]
    }
}