ChangeCase

Change Case (ChangeCase) - kleines Tool um die Groß-/Kleinschreibung (lowercase / uppercase) von Text zu ändern.

What is ChangeCase?

ChangeCase is a Chrome extension developed by konstantinsmetana, and its main feature is "Change Case (ChangeCase) - kleines Tool um die Groß-/Kleinschreibung (lowercase / uppercase) von Text zu ändern.".

Extension Screenshots

screenshot

Download ChangeCase Extension CRX File

Download ChangeCase extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name ChangeCase ChangeCase
ID akjieklehambjpcljkajdgmfgphkhfko
Official URL https://chromewebstore.google.com/detail/changecase/akjieklehambjpcljkajdgmfgphkhfko
Description Change Case (ChangeCase) - kleines Tool um die Groß-/Kleinschreibung (lowercase / uppercase) von Text zu ändern.
File Size 8.13 KB
Installation Count 552
Current Version 0.1.1
Last Updated 2017-02-23
Publish Date 2017-02-23
Rating 3.18/5 Total 11 Ratings
Developer konstantinsmetana
Email [email protected]
Payment Type free
Supported Languages 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"
        }
    ]
}