SwitchCase
Switch selected text to all uppercase or all lowercase.
Co to jest SwitchCase?
SwitchCase to rozszerzenie Chrome opracowane przez Ash A., a jego główną funkcją jest „Switch selected text to all uppercase or all lowercase.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia SwitchCase
Pobierz pliki rozszerzeń SwitchCase w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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. Podstawowe informacje o rozszerzeniu
| Nazwa | |
| ID | cilpijegbpjdefcbhgjiobbegencnncb |
| Oficjalny URL | https://chromewebstore.google.com/detail/switchcase/cilpijegbpjdefcbhgjiobbegencnncb |
| Opis | Switch selected text to all uppercase or all lowercase. |
| Rozmiar pliku | 10.23 KB |
| Liczba instalacji | 109 |
| Aktualna Wersja | 1.1 |
| Ostatnia Aktualizacja | 2015-02-01 |
| Data Publikacji | 2015-02-01 |
| Ocena | 1.55/5 Łącznie 11 Oceny |
| Deweloper | Ash A. |
| Typ Płatności | free |
| Obsługiwane Języki | 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"
]
}
} | |