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.

Cos'è Multiple Selection?

Multiple Selection è un'estensione di Chrome sviluppata da k.ivanow, e la sua funzione principale è "Multiple selection does just what the name suggest - it allows you to have multiple selections at the same time, which you can copy.".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Multiple Selection

Scarica i file di estensione Multiple Selection in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Multiple Selection Multiple Selection
ID cnccnjdknbhcdcenjmelmlkpklbhlieg
URL Ufficiale https://chromewebstore.google.com/detail/multiple-selection/cnccnjdknbhcdcenjmelmlkpklbhlieg
Descrizione Multiple selection does just what the name suggest - it allows you to have multiple selections at the same time, which you can copy.
Dimensione del File 13.67 KB
Conteggio Installazioni 800
Versione Corrente 1.1
Ultimo Aggiornamento 2017-02-05
Data di Pubblicazione 2017-02-05
Valutazione 2.73/5 Totale 33 Valutazioni
Sviluppatore k.ivanow
Email [email protected]
Tipo di Pagamento free
URL della Pagina della Politica sulla Privacy https://janusworkspace.com
Lingue Supportate 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"
        }
    ]
}