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 là gì?

Multiple Selection là một tiện ích mở rộng Chrome được phát triển bởi k.ivanow, và tính năng chính của nó là "Multiple selection does just what the name suggest - it allows you to have multiple selections at the same time, which you can copy.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Multiple Selection

Tải xuống các tệp mở rộng Multiple Selection dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Multiple Selection Multiple Selection
ID cnccnjdknbhcdcenjmelmlkpklbhlieg
URL Chính Thức https://chromewebstore.google.com/detail/multiple-selection/cnccnjdknbhcdcenjmelmlkpklbhlieg
Mô tả Multiple selection does just what the name suggest - it allows you to have multiple selections at the same time, which you can copy.
Kích Thước Tệp 13.67 KB
Số Lần Cài Đặt 800
Phiên Bản Hiện Tại 1.1
Cập Nhật Lần Cuối 2017-02-05
Ngày Phát Hành 2017-02-05
Đánh Giá 2.73/5 Tổng số 33 Đánh Giá
Nhà Phát Triển k.ivanow
Email [email protected]
Loại Thanh Toán free
URL Trang Chính Sách Bảo Mật https://janusworkspace.com
Ngôn Ngữ Được Hỗ Trợ 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"
        }
    ]
}