Copy HTML Link

Copy link to the current page (with page title) to the clipboard.

Copy HTML Link là gì?

Copy HTML Link là một tiện ích mở rộng Chrome được phát triển bởi Paul Irish, và tính năng chính của nó là "Copy link to the current page (with page title) to the clipboard.".

Tải xuống tệp CRX của tiện ích mở rộng Copy HTML Link

Tải xuống các tệp mở rộng Copy HTML Link dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        Click once for HTML link and text fallback.
Double-click to copy text as markdown.

Also available via keyboard shortcut:
* Alt+Shift+C on Windows / Linux
* Ctrl+Shift+C on Mac

(Protip: Tapping the C twice will "double-click")

Source: https://github.com/paulirish/CopyLink-extension                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Copy HTML Link Copy HTML Link
ID ipefndfjbbonoeiaggfhibcnimekokjl
URL Chính Thức https://chrome.google.com/webstore/detail/copy-html-link/ipefndfjbbonoeiaggfhibcnimekokjl
Mô tả Copy link to the current page (with page title) to the clipboard.
Kích Thước Tệp 17.37 KB
Số Lần Cài Đặt 315
Phiên Bản Hiện Tại 1.2
Cập Nhật Lần Cuối 2016-11-05
Ngày Phát Hành 2016-11-05
Đánh Giá 4.75/5 Tổng số 4 Đánh Giá
Nhà Phát Triển Paul Irish
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/paulirish/CopyLink-extension
URL Trang Trợ Giúp https://github.com/paulirish/CopyLink-extension/issues
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "background": {
        "page": "background.html",
        "persistent": false
    },
    "browser_action": {
        "default_icon": "icon64.png",
        "default_title": "Copy HTML Link"
    },
    "description": "Copy link to the current page (with page title) to the clipboard.",
    "icons": {
        "128": "icon128.png",
        "16": "icon16.png",
        "32": "icon32.png",
        "64": "icon64.png"
    },
    "name": "Copy HTML Link",
    "permissions": [
        "activeTab",
        "clipboardWrite",
        "contextMenus"
    ],
    "version": "1.2",
    "commands": {
        "copy-html-link": {
            "suggested_key": {
                "default": "Alt+Shift+C",
                "mac": "MacCtrl+Shift+C"
            },
            "description": "Copy link of the page (with title)"
        }
    }
}