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.

什么是Multiple Selection?

Multiple Selection是由k.ivanow开发的Chrome扩展程序,该扩展的主要功能是“Multiple selection does just what the name suggest - it allows you to have multiple selections at the same time, which you can copy.”。

扩展截图

screenshot
screenshot

下载Multiple Selection扩展crx文件

下载Multiple Selection扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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.                    

扩展基本信息

名称 Multiple Selection Multiple Selection
ID cnccnjdknbhcdcenjmelmlkpklbhlieg
官方URL https://chromewebstore.google.com/detail/multiple-selection/cnccnjdknbhcdcenjmelmlkpklbhlieg
简介 Multiple selection does just what the name suggest - it allows you to have multiple selections at the same time, which you can copy.
文件大小 13.67 KB
安装次数 800
当前版本 1.1
更新时间 2017-02-05
上架时间 2017-02-05
评分 2.73/5 共33次评分
开发者 k.ivanow
电子邮箱 [email protected]
付费类型 free
隐私政策页面URL https://janusworkspace.com
支持的语言 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"
        }
    ]
}