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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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"
    }
}