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
Eメール [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"
        }
    ]
}