SwitchCase
Switch selected text to all uppercase or all lowercase.
Cos'è SwitchCase?
SwitchCase è un'estensione di Chrome sviluppata da Ash A., e la sua funzione principale è "Switch selected text to all uppercase or all lowercase.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione SwitchCase
Scarica i file di estensione SwitchCase in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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. Informazioni di Base sull'Estensione
| Nome | |
| ID | cilpijegbpjdefcbhgjiobbegencnncb |
| URL Ufficiale | https://chromewebstore.google.com/detail/switchcase/cilpijegbpjdefcbhgjiobbegencnncb |
| Descrizione | Switch selected text to all uppercase or all lowercase. |
| Dimensione del File | 10.23 KB |
| Conteggio Installazioni | 109 |
| Versione Corrente | 1.1 |
| Ultimo Aggiornamento | 2015-02-01 |
| Data di Pubblicazione | 2015-02-01 |
| Valutazione | 1.55/5 Totale 11 Valutazioni |
| Sviluppatore | Ash A. |
| Tipo di Pagamento | free |
| Lingue Supportate | 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"
]
}
} | |