Copy URL text

A tool to decode URL when copying links from a web page.

什么是Copy URL text?

Copy URL text是由dave.waters89开发的Chrome扩展程序,该扩展的主要功能是“A tool to decode URL when copying links from a web page.”。

扩展截图

screenshot

下载Copy URL text扩展crx文件

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

扩展使用说明

                        This extension will decode the link url copied from a webpage to the clipboard and update the clipboard with the decoded url.  Can be used to quickly get the pretty version of a URL link.                    

扩展基本信息

名称 Copy URL text Copy URL text
ID ihdpldgbcefimodimfdjhbhnanpocgfj
官方URL https://chromewebstore.google.com/detail/copy-url-text/ihdpldgbcefimodimfdjhbhnanpocgfj
简介 A tool to decode URL when copying links from a web page.
文件大小 3.5 KB
安装次数 43
当前版本 0.0.0.1
更新时间 2018-12-06
上架时间 2018-11-30
开发者 dave.waters89
电子邮箱 [email protected]
付费类型 free
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Copy URL text",
    "description": "A tool to decode URL when copying links from a web page.",
    "version": "0.0.0.1",
    "manifest_version": 2,
    "permissions": [
        "activeTab"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "oncopy.js"
            ]
        }
    ]
}