Copy link

Copies a formatted link to the current tab onto the clipboard.

Was ist Copy link?

Copy link ist eine Chrome-Erweiterung, die von Tim Dierks entwickelt wurde, und ihr Hauptmerkmal ist "Copies a formatted link to the current tab onto the clipboard.".

Copy link-Erweiterungs-CRX-Datei herunterladen

Laden Sie Copy link-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

                        When you click this extension's icon, it will copy the current tab's URL to the clipboard, formatted so it can be pasted into a document or email message as a link, with the tab's title as the text of the link and the tab's URL as the target of the link. It also supports copying the tab's title and link as a Markdown-formatted string suitable for pasting into Markdown documents.                    

Grundlegende Informationen zur Erweiterung

Name Copy link Copy link
ID cgkebkmimknmkflnkcdagamcifjnbfne
Offizielle URL https://chromewebstore.google.com/detail/copy-link/cgkebkmimknmkflnkcdagamcifjnbfne
Beschreibung Copies a formatted link to the current tab onto the clipboard.
Dateigröße 17.71 KB
Installationsanzahl 229
Aktuelle Version 1.0
Letztes Update 2017-01-28
Veröffentlichungsdatum 2017-01-28
Bewertung 3.50/5 Insgesamt 2 Bewertungen
Entwickler Tim Dierks
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/tdierks/copy-url-ext
Hilfeseite URL https://github.com/tdierks/copy-url-ext/blob/master/README.md
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Copy link",
    "description": "Copies a formatted link to the current tab onto the clipboard.",
    "author": "Tim Dierks ",
    "version": "1.0",
    "homepage_url": "https:\/\/github.com\/tdierks\/copy-url-ext",
    "icons": {
        "128": "icon128.png"
    },
    "browser_action": {
        "default_icon": {
            "19": "icon19.png",
            "38": "icon38.png"
        },
        "default_title": "Copy formatted link"
    },
    "background": {
        "page": "copy-url.html",
        "persistent": false
    },
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Ctrl+Shift+C"
            }
        }
    },
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "permissions": [
        "activeTab",
        "storage"
    ]
}