Copy link

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

Qu'est-ce que Copy link ?

Copy link est une extension Chrome développée par Tim Dierks, et sa fonction principale est "Copies a formatted link to the current tab onto the clipboard.".

Télécharger le fichier CRX de l'extension Copy link

Téléchargez les fichiers d'extension Copy link au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Copy link Copy link
ID cgkebkmimknmkflnkcdagamcifjnbfne
URL Officiel https://chromewebstore.google.com/detail/copy-link/cgkebkmimknmkflnkcdagamcifjnbfne
Description Copies a formatted link to the current tab onto the clipboard.
Taille du Fichier 17.71 KB
Nombre d'Installations 229
Version Actuelle 1.0
Dernière Mise à Jour 2017-01-28
Date de Publication 2017-01-28
Évaluation 3.50/5 Total 2 Évaluations
Développeur Tim Dierks
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/tdierks/copy-url-ext
URL de la Page d'Aide https://github.com/tdierks/copy-url-ext/blob/master/README.md
Langues Prises en Charge 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"
    ]
}