Excellent Selection

Transform selected text using one of several built-in filters.

O que é Excellent Selection?

Excellent Selection é uma extensão do Chrome desenvolvida por Travis Paul, e sua principal característica é "Transform selected text using one of several built-in filters.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Excellent Selection

Baixe arquivos de extensão Excellent Selection 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

                        The commands listed below are added to the right-click context menu of selected text. You can enable or disable each command in the options menu as well as set a custom text selection color.

• Lowercase
• Uppercase
• Uppercase Words
• Length
• Shuffle
• Reverse
• Search and Replace
• Word Count
• Word Wrap
• Base64 Encode
• Base64 Decode
• URL Encode
• Strip Tags
• Remove Whitespace
• Format XML
• Format JSON
• Format CSS
• Format SQL
• MD5
• SHA-1
• SHA-224
• SHA-256
• SHA-384
• SHA-512
• ROT13
• Pig Latin

You can fork this extension at github: https://github.com/TravisPaul/crx-excellent-selection                    

Informações Básicas da Extensão

Nome Excellent Selection Excellent Selection
ID enhkggpdbpffnbhbaimnpdjbmenlhmkm
URL Oficial https://chromewebstore.google.com/detail/excellent-selection/enhkggpdbpffnbhbaimnpdjbmenlhmkm
Descrição Transform selected text using one of several built-in filters.
Tamanho do Arquivo 82.43 KB
Contagem de Instalações 419
Versão Atual 1.7.1
Última Atualização 2017-05-22
Data de Publicação 2017-05-22
Classificação 3.78/5 Total de 9 Avaliações
Desenvolvedor Travis Paul
Tipo de Pagamento free
Site da Extensão https://github.com/TravisPaul/crx-excellent-selection
URL da Página de Ajuda https://github.com/TravisPaul/crx-excellent-selection/issues
Idiomas Suportados en,es
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_extName__",
    "version": "1.7.1",
    "manifest_version": 2,
    "description": "__MSG_extDescription__",
    "default_locale": "en",
    "icons": {
        "16": "img\/16.png",
        "48": "img\/48.png",
        "128": "img\/128.png"
    },
    "options_page": "options.html",
    "background": {
        "page": "background.html",
        "persistent": false
    },
    "permissions": [
        "clipboardWrite",
        "contextMenus",
        "unlimitedStorage"
    ],
    "offline_enabled": true,
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/selection.js"
            ]
        }
    ]
}