Remove Selection

This extension removes selected text.

O que é Remove Selection?

Remove Selection é uma extensão do Chrome desenvolvida por vncnt.liu, e sua principal característica é "This extension removes selected text.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Remove Selection

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

                        After selecting some text, you can click the icon on the browser Toolbar, or choose 'Remove Selection' in the right-click Menu. I wrote it because it was one of the feature in FastestFox for Firefox and I love it, but did not find a good alternative in Chrome.                    

Informações Básicas da Extensão

Nome Remove Selection Remove Selection
ID mcfnbphdcohjpejiocghpcajmicbjink
URL Oficial https://chromewebstore.google.com/detail/remove-selection/mcfnbphdcohjpejiocghpcajmicbjink
Descrição This extension removes selected text.
Tamanho do Arquivo 10.02 KB
Contagem de Instalações 118
Versão Atual 2.0
Última Atualização 2022-05-11
Data de Publicação 2017-08-09
Classificação 4.67/5 Total de 6 Avaliações
Desenvolvedor vncnt.liu
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Remove Selection",
    "description": "This extension removes selected text.",
    "version": "2.0",
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "action": {
        "default_title": "Remove Selection",
        "default_icon": "images\/icon16.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "permissions": [
        "activeTab",
        "contextMenus"
    ]
}