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
官方網址 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"
        }
    ]
}