Copy HTML Link

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

什麼是Copy HTML Link?

Copy HTML Link是由Paul Irish開發的Chrome擴展程式,該擴展的主要功能是“Copy link to the current page (with page title) to the clipboard.”。

下載Copy HTML Link擴展crx文件

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

擴展使用說明

                        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                    

擴展基本資訊

名稱 Copy HTML Link Copy HTML Link
ID ipefndfjbbonoeiaggfhibcnimekokjl
官方網址 https://chrome.google.com/webstore/detail/copy-html-link/ipefndfjbbonoeiaggfhibcnimekokjl
簡介 Copy link to the current page (with page title) to the clipboard.
檔案大小 17.37 KB
安裝次數 315
目前版本 1.2
更新時間 2016-11-05
上架時間 2016-11-05
評分 4.75/5 共 4 次評分
開發者 Paul Irish
付費類型 free
擴展官網 https://github.com/paulirish/CopyLink-extension
說明頁面URL https://github.com/paulirish/CopyLink-extension/issues
支援的語言 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)"
        }
    }
}