Copy URL text

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

Was ist Copy URL text?

Copy URL text ist eine Chrome-Erweiterung, die von dave.waters89 entwickelt wurde, und ihr Hauptmerkmal ist "A tool to decode URL when copying links from a web page.".

Erweiterungsscreenshots

screenshot

Copy URL text-Erweiterungs-CRX-Datei herunterladen

Laden Sie Copy URL text-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Copy URL text Copy URL text
ID ihdpldgbcefimodimfdjhbhnanpocgfj
Offizielle URL https://chromewebstore.google.com/detail/copy-url-text/ihdpldgbcefimodimfdjhbhnanpocgfj
Beschreibung A tool to decode URL when copying links from a web page.
Dateigröße 3.5 KB
Installationsanzahl 43
Aktuelle Version 0.0.0.1
Letztes Update 2018-12-06
Veröffentlichungsdatum 2018-11-30
Entwickler dave.waters89
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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"
            ]
        }
    ]
}