URL Copy

This extension will copy the current tab's URL to your clipboard.

什么是URL Copy?

URL Copy是由tubaguy50035开发的Chrome扩展程序,该扩展的主要功能是“This extension will copy the current tab's URL to your clipboard.”。

下载URL Copy扩展crx文件

下载URL Copy扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        This extension allows you to copy the URL of your active tab with one click!                    

扩展基本信息

名称 URL Copy URL Copy
ID ipdfpenpabfdkmiegmhmfpoadnbddelj
官方URL https://chrome.google.com/webstore/detail/url-copy/ipdfpenpabfdkmiegmhmfpoadnbddelj
简介 This extension will copy the current tab's URL to your clipboard.
文件大小 9.95 KB
安装次数 103
当前版本 1.0
更新时间 2013-12-11
上架时间 2013-12-11
评分 3.67/5 共3次评分
开发者 tubaguy50035
付费类型 free
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "URL Copy",
    "description": "This extension will copy the current tab's URL to your clipboard.",
    "version": "1.0",
    "permissions": [
        "tabs",
        "clipboardWrite"
    ],
    "background": {
        "scripts": [
            "bg.js"
        ],
        "pages": [
            "background.html"
        ]
    },
    "browser_action": {
        "default_title": "",
        "default_icon": "19.png"
    },
    "icons": {
        "128": "icon.png"
    }
}