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.

Vad är Multiple Selection?

Multiple Selection är en Chrome-tillägg utvecklad av k.ivanow, och dess huvudfunktion är "Multiple selection does just what the name suggest - it allows you to have multiple selections at the same time, which you can copy.".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner Multiple Selection-förlängningens CRX-fil

Ladda ner Multiple Selection-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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äggande Information om Tillägg

Namn Multiple Selection Multiple Selection
ID cnccnjdknbhcdcenjmelmlkpklbhlieg
Officiell webbadress https://chromewebstore.google.com/detail/multiple-selection/cnccnjdknbhcdcenjmelmlkpklbhlieg
Beskrivning Multiple selection does just what the name suggest - it allows you to have multiple selections at the same time, which you can copy.
Filstorlek 13.67 KB
Antal Installationer 800
Aktuell Version 1.1
Senast Uppdaterad 2017-02-05
Publiceringsdatum 2017-02-05
Betyg 2.73/5 Totalt 33 Betyg
Utvecklare k.ivanow
E-post [email protected]
Betalningssätt free
URL till Sekretesspolicy Sidan https://janusworkspace.com
Stödda Språk 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"
        }
    ]
}