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
公式URL 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
Eメール [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"
    ]
}