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.

What is Multiple Selection?

Multiple Selection is a Chrome extension developed by k.ivanow, and its main feature is "Multiple selection does just what the name suggest - it allows you to have multiple selections at the same time, which you can copy.".

Extension Screenshots

screenshot
screenshot

Download Multiple Selection Extension CRX File

Download Multiple Selection extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Multiple Selection Multiple Selection
ID cnccnjdknbhcdcenjmelmlkpklbhlieg
Official URL https://chromewebstore.google.com/detail/multiple-selection/cnccnjdknbhcdcenjmelmlkpklbhlieg
Description Multiple selection does just what the name suggest - it allows you to have multiple selections at the same time, which you can copy.
File Size 13.67 KB
Installation Count 800
Current Version 1.1
Last Updated 2017-02-05
Publish Date 2017-02-05
Rating 2.73/5 Total 33 Ratings
Developer k.ivanow
Email [email protected]
Payment Type free
Privacy Policy Page URL https://janusworkspace.com
Supported Languages 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"
        }
    ]
}