Copy URL text

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

Cos'è Copy URL text?

Copy URL text è un'estensione di Chrome sviluppata da dave.waters89, e la sua funzione principale è "A tool to decode URL when copying links from a web page.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Copy URL text

Scarica i file di estensione Copy URL text in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Copy URL text Copy URL text
ID ihdpldgbcefimodimfdjhbhnanpocgfj
URL Ufficiale https://chromewebstore.google.com/detail/copy-url-text/ihdpldgbcefimodimfdjhbhnanpocgfj
Descrizione A tool to decode URL when copying links from a web page.
Dimensione del File 3.5 KB
Conteggio Installazioni 43
Versione Corrente 0.0.0.1
Ultimo Aggiornamento 2018-12-06
Data di Pubblicazione 2018-11-30
Sviluppatore dave.waters89
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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"
            ]
        }
    ]
}