Copy link

Copies a formatted link to the current tab onto the clipboard.

Copy linkคืออะไร?

Copy link เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Tim Dierks และคุณลักษณะหลักของมันคือ "Copies a formatted link to the current tab onto the clipboard."

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Copy link

ดาวน์โหลดไฟล์ส่วนขยาย Copy link ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

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

                        When you click this extension's icon, it will copy the current tab's URL to the clipboard, formatted so it can be pasted into a document or email message as a link, with the tab's title as the text of the link and the tab's URL as the target of the link. It also supports copying the tab's title and link as a Markdown-formatted string suitable for pasting into Markdown documents.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Copy link Copy link
ID cgkebkmimknmkflnkcdagamcifjnbfne
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/copy-link/cgkebkmimknmkflnkcdagamcifjnbfne
คำอธิบาย Copies a formatted link to the current tab onto the clipboard.
ขนาดไฟล์ 17.71 KB
จำนวนการติดตั้ง 229
เวอร์ชันปัจจุบัน 1.0
อัปเดตครั้งล่าสุด 2017-01-28
วันที่เผยแพร่ 2017-01-28
คะแนน 3.50/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา Tim Dierks
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/tdierks/copy-url-ext
URL หน้าช่วยเหลือ https://github.com/tdierks/copy-url-ext/blob/master/README.md
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Copy link",
    "description": "Copies a formatted link to the current tab onto the clipboard.",
    "author": "Tim Dierks ",
    "version": "1.0",
    "homepage_url": "https:\/\/github.com\/tdierks\/copy-url-ext",
    "icons": {
        "128": "icon128.png"
    },
    "browser_action": {
        "default_icon": {
            "19": "icon19.png",
            "38": "icon38.png"
        },
        "default_title": "Copy formatted link"
    },
    "background": {
        "page": "copy-url.html",
        "persistent": false
    },
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Ctrl+Shift+C"
            }
        }
    },
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "permissions": [
        "activeTab",
        "storage"
    ]
}

ส่วนขยายที่เกี่ยวข้อง