Convert Case

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

Cos'è Convert Case?

Convert Case è un'estensione di Chrome sviluppata da https://convertcase.net, e la sua funzione principale è "Convert text in your browser between UPPER CASE, lower case and more".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Convert Case

Scarica i file di estensione Convert Case in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Convert Case Convert Case
ID coeojadhefmcmdnojhgihdhkbnnppghc
URL Ufficiale https://chromewebstore.google.com/detail/convert-case/coeojadhefmcmdnojhgihdhkbnnppghc
Descrizione Convert text in your browser between UPPER CASE, lower case and more
Dimensione del File 12.78 KB
Conteggio Installazioni 7,168
Versione Corrente 1.0.9
Ultimo Aggiornamento 2023-09-15
Data di Pubblicazione 2022-09-28
Valutazione 3.77/5 Totale 22 Valutazioni
Sviluppatore https://convertcase.net
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://convertcase.net
URL della Pagina di Aiuto https://convertcase.net
URL della Pagina della Politica sulla Privacy https://convertcase.net/privacy
Lingue Supportate 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"
        }
    }
}