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
电子邮箱 [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"
    ]
}