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
官方網址 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"
            ]
        }
    ]
}