Copy link

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

Copy link là gì?

Copy link là một tiện ích mở rộng Chrome được phát triển bởi Tim Dierks, và tính năng chính của nó là "Copies a formatted link to the current tab onto the clipboard.".

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

Tải xuống các tệp mở rộng Copy 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

                        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.                    

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

Tên Copy link Copy link
ID cgkebkmimknmkflnkcdagamcifjnbfne
URL Chính Thức https://chromewebstore.google.com/detail/copy-link/cgkebkmimknmkflnkcdagamcifjnbfne
Mô tả Copies a formatted link to the current tab onto the clipboard.
Kích Thước Tệp 17.71 KB
Số Lần Cài Đặt 229
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2017-01-28
Ngày Phát Hành 2017-01-28
Đánh Giá 3.50/5 Tổng số 2 Đánh Giá
Nhà Phát Triển Tim Dierks
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/tdierks/copy-url-ext
URL Trang Trợ Giúp https://github.com/tdierks/copy-url-ext/blob/master/README.md
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}