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.

Wat is Multiple Selection?

Multiple Selection is een Chrome-extensie ontwikkeld door k.ivanow, en de belangrijkste functie is "Multiple selection does just what the name suggest - it allows you to have multiple selections at the same time, which you can copy.".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie Multiple Selection

Download Multiple Selection-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Multiple Selection Multiple Selection
ID cnccnjdknbhcdcenjmelmlkpklbhlieg
Officiële URL https://chromewebstore.google.com/detail/multiple-selection/cnccnjdknbhcdcenjmelmlkpklbhlieg
Beschrijving Multiple selection does just what the name suggest - it allows you to have multiple selections at the same time, which you can copy.
Bestandsgrootte 13.67 KB
Aantal Installaties 800
Huidige Versie 1.1
Laatst Bijgewerkt 2017-02-05
Publicatiedatum 2017-02-05
Beoordeling 2.73/5 Totaal 33 Beoordelingen
Ontwikkelaar k.ivanow
E-mail [email protected]
Betalingswijze free
URL van de Privacybeleid Pagina https://janusworkspace.com
Ondersteunde Talen 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"
        }
    ]
}