Copy All Urls

Copy tabs URL to clipboard (formats : text, HTML, JSON or custom). Paste to open multiple URL at one go.

ما هو Copy All Urls؟

Copy All Urls هو إضافة Chrome تم تطويرها بواسطة Vincent Paré، والميزة الرئيسية لها هي "Copy tabs URL to clipboard (formats : text, HTML, JSON or custom). Paste to open multiple URL at one go.".

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

screenshot
screenshot

تحميل ملف CRX للإضافة Copy All Urls

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

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

                        Two features :
- Copy all opened tabs URL into clipboard. 4 formats available : Text, HTML, JSON and custom format.
- Paste to open all URLs in the clipboard into new tabs.

You can use keyboard shortcuts and copy only selected tabs.                    

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

الاسم Copy All Urls Copy All Urls
ID djdmadneanknadilpjiknlnanaolmbfk
عنوان URL الرسمي https://chromewebstore.google.com/detail/copy-all-urls/djdmadneanknadilpjiknlnanaolmbfk
الوصف Copy tabs URL to clipboard (formats : text, HTML, JSON or custom). Paste to open multiple URL at one go.
حجم الملف 128 KB
عدد التثبيتات 317,430
النسخة الحالية 2.11
آخر تحديث 2021-06-02
تاريخ النشر 2015-01-25
تقييم 4.61/5 مجموع تقييمات 401
المطور Vincent Paré
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://vincepare.github.io/CopyAllUrl_Chrome/
عنوان صفحة المساعدة https://github.com/vincepare/CopyAllUrl_Chrome/issues
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "browser_action": {
        "default_icon": "img\/umbrella_19.png",
        "default_title": "Copy URLs to clipboard",
        "default_popup": "popup.html"
    },
    "description": "Copy tabs URL to clipboard (formats : text, HTML, JSON or custom). Paste to open multiple URL at one go.",
    "icons": {
        "128": "img\/umbrella_128.png"
    },
    "background": {
        "scripts": [
            "vendor\/jquery-1.7.2_min.js",
            "vendor\/encoder.js",
            "background.js"
        ]
    },
    "commands": {
        "copy": {
            "suggested_key": {
                "default": "Alt+C"
            },
            "description": "Copy"
        },
        "paste": {
            "suggested_key": {
                "default": "Alt+V"
            },
            "description": "Paste"
        }
    },
    "name": "Copy All Urls",
    "options_page": "options.html",
    "permissions": [
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "clipboardRead",
        "clipboardWrite",
        "notifications"
    ],
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'",
    "version": "2.11",
    "manifest_version": 2
}