Multicopy

Copy multiple texts and do multiple pastes from right click menu

ما هو Multicopy؟

Multicopy هو إضافة Chrome تم تطويرها بواسطة trishul.goel، والميزة الرئيسية لها هي "Copy multiple texts and do multiple pastes from right click menu".

لقطات شاشة التمديد

screenshot
screenshot
screenshot

تحميل ملف CRX للإضافة Multicopy

قم بتنزيل ملفات الامتداد Multicopy بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

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

                        A usability extension, which lets you to copy multiple texts and shows them in right click menu. Paste any of the text in any input field.

To Copy: Right click on selected text -> Multicopy -> Copy this!
To Paste: Right click on text area -> Multicopy -> Select the entry

In some case for paste if clicking entry doesn't work (probably like Facebook), the text is copied to clipboard and you can press Ctrl(command) + V to paste the text in to the box.                    

معلومات أساسية عن التمديد

الاسم Multicopy Multicopy
ID bbihhbmcpmmbidebeomhomjelncfghcl
عنوان URL الرسمي https://chromewebstore.google.com/detail/multicopy/bbihhbmcpmmbidebeomhomjelncfghcl
الوصف Copy multiple texts and do multiple pastes from right click menu
حجم الملف 20.84 KB
عدد التثبيتات 11,063
النسخة الحالية 1.0.0
آخر تحديث 2021-04-04
تاريخ النشر 2019-03-08
تقييم 3.75/5 مجموع تقييمات 20
المطور trishul.goel
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://github.com/tsl143/jsDemos/tree/master/multicopy_webext
عنوان صفحة المساعدة https://github.com/tsl143/jsDemos/tree/master/multicopy_webext
اللغات المدعومة en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Multicopy",
    "description": "Copy multiple texts and do multiple pastes from right click menu",
    "version": "1.0.0",
    "icons": {
        "32": "icons\/icon_32.png",
        "64": "icons\/icon_64.png",
        "128": "icons\/icon_128.png"
    },
    "background": {
        "scripts": [
            "polyfill.js",
            "bg.js"
        ]
    },
    "options_ui": {
        "page": "options.html"
    },
    "permissions": [
        "contextMenus",
        "activeTab",
        "notifications",
        "storage",
        "clipboardWrite"
    ],
    "web_accessible_resources": [
        "icons\/icon_64.png"
    ]
}