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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย k.ivanow และคุณลักษณะหลักของมันคือ "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

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Multiple Selection

ดาวน์โหลดไฟล์ส่วนขยาย 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"
        }
    ]
}