ChangeCase
Change Case (ChangeCase) - kleines Tool um die Groß-/Kleinschreibung (lowercase / uppercase) von Text zu ändern.
Co je ChangeCase?
ChangeCase je rozšíření Chrome vyvinuté konstantinsmetana, a jeho hlavní funkcí je „Change Case (ChangeCase) - kleines Tool um die Groß-/Kleinschreibung (lowercase / uppercase) von Text zu ändern.“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření ChangeCase
Stáhněte si soubory rozšíření ChangeCase ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
Change Case (ChangeCase) - kleines Tool um die Groß-/Kleinschreibung (lowercase / uppercase) von Text zu ändern.
Lowercase to Uppercase
Uppercase to Lowercase
Convertcase
String to Slug
Shortcuts:
Strg+Shift+U - Uppercase
Strg+Shift+L - Lowercase
Strg+Shift+Z - Convert
Anleitung:
1. Text auswählen
2. Rechte maustaste klicken oder Tastenkombination Základní Informace o Rozšíření
| Název | |
| ID | akjieklehambjpcljkajdgmfgphkhfko |
| Oficiální URL | https://chromewebstore.google.com/detail/changecase/akjieklehambjpcljkajdgmfgphkhfko |
| Popis | Change Case (ChangeCase) - kleines Tool um die Groß-/Kleinschreibung (lowercase / uppercase) von Text zu ändern. |
| Velikost souboru | 8.13 KB |
| Počet instalací | 552 |
| Aktuální Verze | 0.1.1 |
| Poslední Aktualizace | 2017-02-23 |
| Datum Vydání | 2017-02-23 |
| Hodnocení | 3.18/5 Celkem 11 Hodnocení |
| Vývojář | konstantinsmetana |
| [email protected] | |
| Typ Platby | free |
| Podporované Jazyky | de |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "ChangeCase",
"description": "Change Case (ChangeCase) - kleines Tool um die Gro\u00df-\/Kleinschreibung (lowercase \/ uppercase) von Text zu \u00e4ndern.",
"permissions": [
"tabs",
"http:\/\/*\/*",
"https:\/\/*\/*",
"contextMenus"
],
"version": "0.1.1",
"icons": {
"16": "16.png",
"32": "32.png",
"48": "48.png",
"64": "64.png",
"128": "128.png"
},
"background": {
"page": "background.html"
},
"commands": {
"uppercase": {
"description": "Uppercase",
"suggested_key": {
"default": "Ctrl+Shift+U",
"mac": "Command+Shift+U"
}
},
"lowercase": {
"description": "Lowercase",
"suggested_key": {
"default": "Ctrl+Shift+L",
"mac": "Command+Shift+L"
}
},
"convertcase": {
"description": "Convert case",
"suggested_key": {
"default": "Ctrl+Shift+Z",
"mac": "Command+Shift+Z"
}
}
},
"content_scripts": [
{
"all_frames": true,
"js": [
"content.js"
],
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"run_at": "document_end"
}
]
} | |