Convert Case

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

O que é Convert Case?

Convert Case é uma extensão do Chrome desenvolvida por https://convertcase.net, e sua principal característica é "Convert text in your browser between UPPER CASE, lower case and more".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Convert Case

Baixe arquivos de extensão Convert Case no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Convert Case Convert Case
ID coeojadhefmcmdnojhgihdhkbnnppghc
URL Oficial https://chromewebstore.google.com/detail/convert-case/coeojadhefmcmdnojhgihdhkbnnppghc
Descrição Convert text in your browser between UPPER CASE, lower case and more
Tamanho do Arquivo 12.78 KB
Contagem de Instalações 7,168
Versão Atual 1.0.9
Última Atualização 2023-09-15
Data de Publicação 2022-09-28
Classificação 3.77/5 Total de 22 Avaliações
Desenvolvedor https://convertcase.net
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://convertcase.net
URL da Página de Ajuda https://convertcase.net
URL da Página de Política de Privacidade https://convertcase.net/privacy
Idiomas Suportados 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"
        }
    }
}