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
公式URL 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)"
        }
    }
}