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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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
عنوان صفحة سياسة الخصوصية 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"
        }
    ]
}