Tab Link Copier

Copies the current tab's url and title as a rich text link. Useful for pasting in Google Docs

Tab Link Copier là gì?

Tab Link Copier là một tiện ích mở rộng Chrome được phát triển bởi Volodya Shtenovych, và tính năng chính của nó là "Copies the current tab's url and title as a rich text link. Useful for pasting in Google Docs".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

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

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

                        Copies the current page url and title as a rich text link. 

Useful when you want to refer to a web-page in a document you are writing - with one click on an icon the link gets copied to clipboard so you can later on simply paste it in a google doc or text editor.

To copy the link of the current tab click on the extension's icon or use the keyboard shortcut: Ctrl+Shift+C (Command+Ctrl+C for Mac). In case of using the shortcut this extension will ask for tabs permissions in order to query the current tab's url.                    

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

Tên Tab Link Copier Tab Link Copier
ID ijkpnaifgolhlcfhcfamddnlnfjpjaji
URL Chính Thức https://chromewebstore.google.com/detail/tab-link-copier/ijkpnaifgolhlcfhcfamddnlnfjpjaji
Mô tả Copies the current tab's url and title as a rich text link. Useful for pasting in Google Docs
Kích Thước Tệp 19.26 KB
Số Lần Cài Đặt 668
Phiên Bản Hiện Tại 1.2.3
Cập Nhật Lần Cuối 2020-05-02
Ngày Phát Hành 2020-05-02
Đánh Giá 3.67/5 Tổng số 15 Đánh Giá
Nhà Phát Triển Volodya Shtenovych
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/Leksyk/chrome-copy-link
URL Trang Trợ Giúp https://github.com/Leksyk/chrome-copy-link
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Tab Link Copier",
    "description": "Copies the current tab's url and title as a rich text link. Useful for pasting in Google Docs",
    "version": "1.2.3",
    "background": {
        "persistent": false,
        "scripts": [
            "copyLink.js"
        ]
    },
    "browser_action": {
        "default_icon": "icon.png"
    },
    "icons": {
        "128": "icon.png"
    },
    "commands": {
        "copy-link": {
            "suggested_key": {
                "default": "Ctrl+Shift+C",
                "mac": "Command+MacCtrl+C"
            },
            "description": "Copy Link as Rich Text"
        },
        "copy-as-plain": {
            "description": "Copy Link and Title as Plain Text"
        }
    },
    "permissions": [
        "clipboardWrite",
        "tabs",
        "contextMenus"
    ],
    "optional_permissions": [
        "notifications"
    ],
    "content_security_policy": "script-src 'self' https:\/\/www.google-analytics.com; object-src 'self'"
}