Multiple Selection

Multiple selection does just what the name suggest - it allows you to have multiple selections at the same time, which you can copy.

O que é Multiple Selection?

Multiple Selection é uma extensão do Chrome desenvolvida por k.ivanow, e sua principal característica é "Multiple selection does just what the name suggest - it allows you to have multiple selections at the same time, which you can copy.".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Multiple Selection

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

                        Multiple selection is inspired by the Sublime Text Editor and does just what the name suggest - it allows you to have multiple selections at the same time, which you can copy.                    

Informações Básicas da Extensão

Nome Multiple Selection Multiple Selection
ID cnccnjdknbhcdcenjmelmlkpklbhlieg
URL Oficial https://chromewebstore.google.com/detail/multiple-selection/cnccnjdknbhcdcenjmelmlkpklbhlieg
Descrição Multiple selection does just what the name suggest - it allows you to have multiple selections at the same time, which you can copy.
Tamanho do Arquivo 13.67 KB
Contagem de Instalações 800
Versão Atual 1.1
Última Atualização 2017-02-05
Data de Publicação 2017-02-05
Classificação 2.73/5 Total de 33 Avaliações
Desenvolvedor k.ivanow
Email [email protected]
Tipo de Pagamento free
URL da Página de Política de Privacidade https://janusworkspace.com
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Multiple Selection",
    "description": "Multiple selection does just what the name suggest - it allows you to have multiple selections at the same time, which you can copy.",
    "version": "1.1",
    "icons": {
        "256": "\/img\/icon256.png"
    },
    "browser_action": {
        "default_popup": "index.html"
    },
    "background": {
        "scripts": [
            "\/js\/background.js"
        ]
    },
    "permissions": [
        "activeTab",
        "tabs",
        "storage",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "\/js\/clipboard.js",
                "\/js\/content.js"
            ],
            "all_frames": true,
            "run_at": "document_start"
        }
    ]
}