ManyClip

A stack based copy/paste extension for Chrome.

ما هو ManyClip؟

ManyClip هو إضافة Chrome تم تطويرها بواسطة John Wiegert، والميزة الرئيسية لها هي "A stack based copy/paste extension for Chrome.".

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

screenshot

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

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

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

                        This free, Open Source extension allows you to copy and paste stacks of text or data, making clipboard use even faster and more convenient in Chrome.
It’s easy to use:
1.       Highlight the text you’d like to copy

2.       Add it to clipboard with CTRL+ALT+C

3.       Repeat steps 1 & 2 as needed

4.       Paste each piece in reverse with CTRL+ALT+V

Perfect for making lists, speeding up data entry, streamlining the process of filling out online forms, and more!

If you have any issues please email the developer at [email protected] or file an issue at https://github.com/bigcakes/ManyClip                    

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

الاسم ManyClip ManyClip
ID kbjmnekoahknjngcbkokjgoaoehdbcoi
عنوان URL الرسمي https://chrome.google.com/webstore/detail/manyclip/kbjmnekoahknjngcbkokjgoaoehdbcoi
الوصف A stack based copy/paste extension for Chrome.
حجم الملف 42.25 KB
عدد التثبيتات 245
النسخة الحالية 0.2.0
آخر تحديث 2017-07-29
تاريخ النشر 2017-07-29
تقييم 2.00/5 مجموع تقييمات 1
المطور John Wiegert
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://github.com/bigcakes/ManyClip
عنوان صفحة المساعدة https://github.com/bigcakes/ManyClip
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "ManyClip",
    "description": "A stack based copy\/paste extension for Chrome.",
    "version": "0.2.0",
    "offline_enabled": true,
    "browser_action": {
        "default_icon": "icons\/manyclip_48.png",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "icons\/manyclip_16.png",
        "48": "icons\/manyclip_48.png",
        "128": "icons\/manyclip_128.png"
    },
    "background": {
        "scripts": [
            "js\/jquery.min.js",
            "js\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/jquery.min.js",
                "js\/content.js"
            ],
            "run_at": "document_start"
        }
    ],
    "permissions": [
        "activeTab",
        "clipboardWrite",
        "clipboardRead",
        "storage",
        "unlimitedStorage"
    ]
}