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?

Tab Link Copier是由Volodya Shtenovych開發的Chrome擴展程式,該擴展的主要功能是“Copies the current tab's url and title as a rich text link. Useful for pasting in Google Docs”。

擴展截圖

screenshot

下載Tab Link Copier擴展crx文件

下載Tab Link Copier擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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.                    

擴展基本資訊

名稱 Tab Link Copier Tab Link Copier
ID ijkpnaifgolhlcfhcfamddnlnfjpjaji
官方網址 https://chromewebstore.google.com/detail/tab-link-copier/ijkpnaifgolhlcfhcfamddnlnfjpjaji
簡介 Copies the current tab's url and title as a rich text link. Useful for pasting in Google Docs
檔案大小 19.26 KB
安裝次數 668
目前版本 1.2.3
更新時間 2020-05-02
上架時間 2020-05-02
評分 3.67/5 共 15 次評分
開發者 Volodya Shtenovych
付費類型 free
擴展官網 https://github.com/Leksyk/chrome-copy-link
說明頁面URL https://github.com/Leksyk/chrome-copy-link
支援的語言 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'"
}