Copy URL text

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

Vad är Copy URL text?

Copy URL text är en Chrome-tillägg utvecklad av dave.waters89, och dess huvudfunktion är "A tool to decode URL when copying links from a web page.".

Tilläggsskärmbilder

screenshot

Ladda ner Copy URL text-förlängningens CRX-fil

Ladda ner Copy URL text-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn Copy URL text Copy URL text
ID ihdpldgbcefimodimfdjhbhnanpocgfj
Officiell webbadress https://chromewebstore.google.com/detail/copy-url-text/ihdpldgbcefimodimfdjhbhnanpocgfj
Beskrivning A tool to decode URL when copying links from a web page.
Filstorlek 3.5 KB
Antal Installationer 43
Aktuell Version 0.0.0.1
Senast Uppdaterad 2018-12-06
Publiceringsdatum 2018-11-30
Utvecklare dave.waters89
E-post [email protected]
Betalningssätt free
Stödda Språk 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"
            ]
        }
    ]
}