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.

Apa itu Multiple Selection?

Multiple Selection adalah ekstensi Chrome yang dikembangkan oleh k.ivanow, dan fitur utamanya adalah "Multiple selection does just what the name suggest - it allows you to have multiple selections at the same time, which you can copy.".

Screenshot Ekstensi

screenshot
screenshot

Unduh Berkas CRX Ekstensi Multiple Selection

Unduh file ekstensi Multiple Selection dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama Multiple Selection Multiple Selection
ID cnccnjdknbhcdcenjmelmlkpklbhlieg
URL Resmi https://chromewebstore.google.com/detail/multiple-selection/cnccnjdknbhcdcenjmelmlkpklbhlieg
Deskripsi Multiple selection does just what the name suggest - it allows you to have multiple selections at the same time, which you can copy.
Ukuran File 13.67 KB
Jumlah Instalasi 800
Versi Saat Ini 1.1
Terakhir Diperbarui 2017-02-05
Tanggal Publikasi 2017-02-05
Penilaian 2.73/5 Total 33 Penilaian
Pengembang k.ivanow
Email [email protected]
Tipe Pembayaran free
URL Halaman Kebijakan Privasi https://janusworkspace.com
Bahasa yang Didukung 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"
        }
    ]
}