Copy link

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

Wat is Copy link?

Copy link is een Chrome-extensie ontwikkeld door Tim Dierks, en de belangrijkste functie is "Copies a formatted link to the current tab onto the clipboard.".

Download het CRX-bestand van de extensie Copy link

Download Copy link-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Copy link Copy link
ID cgkebkmimknmkflnkcdagamcifjnbfne
Officiële URL https://chromewebstore.google.com/detail/copy-link/cgkebkmimknmkflnkcdagamcifjnbfne
Beschrijving Copies a formatted link to the current tab onto the clipboard.
Bestandsgrootte 17.71 KB
Aantal Installaties 229
Huidige Versie 1.0
Laatst Bijgewerkt 2017-01-28
Publicatiedatum 2017-01-28
Beoordeling 3.50/5 Totaal 2 Beoordelingen
Ontwikkelaar Tim Dierks
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/tdierks/copy-url-ext
Help Pagina-URL https://github.com/tdierks/copy-url-ext/blob/master/README.md
Ondersteunde Talen 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"
    ]
}