Convert Case

Convert text in your browser between UPPER CASE, lower case and more

What is Convert Case?

Convert Case is a Chrome extension developed by https://convertcase.net, and its main feature is "Convert text in your browser between UPPER CASE, lower case and more".

Extension Screenshots

screenshot

Download Convert Case Extension CRX File

Download Convert Case 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

                        Select text in your browser and right click to convert the text in place from UPPER CASE to Sentence case and more.

Optionally auto copy the selected text by choosing the Copy After Conversion option in the context menu.

What's new!

1.0.9 - Settings page for title case options and keyboard shortcuts - Alt+(U, L, C or A)
1.0.8 - Reliability updates
1.0.7 - Title Case conversion and Slugify option.                    

Extension Basic Information

Name Convert Case Convert Case
ID coeojadhefmcmdnojhgihdhkbnnppghc
Official URL https://chromewebstore.google.com/detail/convert-case/coeojadhefmcmdnojhgihdhkbnnppghc
Description Convert text in your browser between UPPER CASE, lower case and more
File Size 12.78 KB
Installation Count 7,168
Current Version 1.0.9
Last Updated 2023-09-15
Publish Date 2022-09-28
Rating 3.77/5 Total 22 Ratings
Developer https://convertcase.net
Email [email protected]
Payment Type free
Extension Website https://convertcase.net
Help Page URL https://convertcase.net
Privacy Policy Page URL https://convertcase.net/privacy
Supported Languages en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Convert Case",
    "description": "Convert text in your browser between UPPER CASE, lower case and more",
    "version": "1.0.9",
    "manifest_version": 3,
    "icons": {
        "16": "logo\/16.png",
        "48": "logo\/48.png",
        "128": "logo\/icon.png"
    },
    "background": {
        "service_worker": "background.js",
        "type": "module"
    },
    "action": {
        "default_title": "Convert Case",
        "default_popup": "popup.html",
        "default_icon": "logo\/icon.png"
    },
    "options_page": "options.html",
    "permissions": [
        "storage",
        "contextMenus",
        "activeTab",
        "tabs",
        "scripting"
    ],
    "host_permissions": [
        ""
    ],
    "commands": {
        "lowercase": {
            "suggested_key": {
                "default": "Alt+L"
            },
            "description": "lower case"
        },
        "uppercase": {
            "suggested_key": {
                "default": "Alt+U"
            },
            "description": "UPPER CASE"
        },
        "capitalizedcase": {
            "suggested_key": {
                "default": "Alt+C"
            },
            "description": "Capitalized Case"
        },
        "titlecase": {
            "suggested_key": {
                "default": "Alt+A"
            },
            "description": "Title Case"
        }
    }
}