Convert Case

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

Wat is Convert Case?

Convert Case is een Chrome-extensie ontwikkeld door https://convertcase.net, en de belangrijkste functie is "Convert text in your browser between UPPER CASE, lower case and more".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Convert Case

Download Convert Case-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Convert Case Convert Case
ID coeojadhefmcmdnojhgihdhkbnnppghc
Officiële URL https://chromewebstore.google.com/detail/convert-case/coeojadhefmcmdnojhgihdhkbnnppghc
Beschrijving Convert text in your browser between UPPER CASE, lower case and more
Bestandsgrootte 12.78 KB
Aantal Installaties 7,168
Huidige Versie 1.0.9
Laatst Bijgewerkt 2023-09-15
Publicatiedatum 2022-09-28
Beoordeling 3.77/5 Totaal 22 Beoordelingen
Ontwikkelaar https://convertcase.net
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://convertcase.net
Help Pagina-URL https://convertcase.net
URL van de Privacybeleid Pagina https://convertcase.net/privacy
Ondersteunde Talen 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"
        }
    }
}