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.

Hvad er Multiple Selection?

Multiple Selection er en Chrome-udvidelse udviklet af k.ivanow, og dens hovedfunktion er "Multiple selection does just what the name suggest - it allows you to have multiple selections at the same time, which you can copy.".

Udvidelsesskærmbilleder

screenshot
screenshot

Download Multiple Selection-udvidelses-CRX-fil

Download Multiple Selection-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn Multiple Selection Multiple Selection
ID cnccnjdknbhcdcenjmelmlkpklbhlieg
Officiel URL https://chromewebstore.google.com/detail/multiple-selection/cnccnjdknbhcdcenjmelmlkpklbhlieg
Beskrivelse Multiple selection does just what the name suggest - it allows you to have multiple selections at the same time, which you can copy.
Filstørrelse 13.67 KB
Antal Installationer 800
Nuværende Version 1.1
Senest Opdateret 2017-02-05
Udgivelsesdato 2017-02-05
Bedømmelse 2.73/5 Samlet 33 Bedømmelser
Udvikler k.ivanow
E-mail [email protected]
Betalingsmetode free
URL til Fortrolighedspolitik Side https://janusworkspace.com
Understøttede Sprog 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"
        }
    ]
}