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.

¿Qué es Multiple Selection?

Multiple Selection es una extensión de Chrome desarrollada por k.ivanow, y su función principal es "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 Pantalla de la Extensión

screenshot
screenshot

Descargar Archivo CRX de la Extensión Multiple Selection

Descarga archivos de extensión Multiple Selection en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre Multiple Selection Multiple Selection
ID cnccnjdknbhcdcenjmelmlkpklbhlieg
URL Oficial https://chromewebstore.google.com/detail/multiple-selection/cnccnjdknbhcdcenjmelmlkpklbhlieg
Descripción Multiple selection does just what the name suggest - it allows you to have multiple selections at the same time, which you can copy.
Tamaño del Archivo 13.67 KB
Cantidad de Instalaciones 800
Versión Actual 1.1
Última Actualización 2017-02-05
Fecha de Publicación 2017-02-05
Calificación 2.73/5 Total de 33 Calificaciones
Desarrollador k.ivanow
Correo electrónico [email protected]
Tipo de Pago free
URL de la Página de Política de Privacidad https://janusworkspace.com
Idiomas Soportados 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"
        }
    ]
}