URL Copy

This extension will copy the current tab's URL to your clipboard.

ما هو URL Copy؟

URL Copy هو إضافة Chrome تم تطويرها بواسطة tubaguy50035، والميزة الرئيسية لها هي "This extension will copy the current tab's URL to your clipboard.".

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

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

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

                        This extension allows you to copy the URL of your active tab with one click!                    

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

الاسم URL Copy URL Copy
ID ipdfpenpabfdkmiegmhmfpoadnbddelj
عنوان URL الرسمي https://chrome.google.com/webstore/detail/url-copy/ipdfpenpabfdkmiegmhmfpoadnbddelj
الوصف This extension will copy the current tab's URL to your clipboard.
حجم الملف 9.95 KB
عدد التثبيتات 103
النسخة الحالية 1.0
آخر تحديث 2013-12-11
تاريخ النشر 2013-12-11
تقييم 3.67/5 مجموع تقييمات 3
المطور tubaguy50035
نوع الدفع free
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "URL Copy",
    "description": "This extension will copy the current tab's URL to your clipboard.",
    "version": "1.0",
    "permissions": [
        "tabs",
        "clipboardWrite"
    ],
    "background": {
        "scripts": [
            "bg.js"
        ],
        "pages": [
            "background.html"
        ]
    },
    "browser_action": {
        "default_title": "",
        "default_icon": "19.png"
    },
    "icons": {
        "128": "icon.png"
    }
}