Copy link

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

什麼是Copy link?

Copy link是由Tim Dierks開發的Chrome擴展程式,該擴展的主要功能是“Copies a formatted link to the current tab onto the clipboard.”。

下載Copy link擴展crx文件

下載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
官方網址 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"
    ]
}