Copy HTML Link

Copy link to the current page (with page title) to the clipboard.

Qu'est-ce que Copy HTML Link ?

Copy HTML Link est une extension Chrome développée par Paul Irish, et sa fonction principale est "Copy link to the current page (with page title) to the clipboard.".

Télécharger le fichier CRX de l'extension Copy HTML Link

Téléchargez les fichiers d'extension Copy HTML 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

                        Click once for HTML link and text fallback.
Double-click to copy text as markdown.

Also available via keyboard shortcut:
* Alt+Shift+C on Windows / Linux
* Ctrl+Shift+C on Mac

(Protip: Tapping the C twice will "double-click")

Source: https://github.com/paulirish/CopyLink-extension                    

Informations de Base sur l'Extension

Nom Copy HTML Link Copy HTML Link
ID ipefndfjbbonoeiaggfhibcnimekokjl
URL Officiel https://chrome.google.com/webstore/detail/copy-html-link/ipefndfjbbonoeiaggfhibcnimekokjl
Description Copy link to the current page (with page title) to the clipboard.
Taille du Fichier 17.37 KB
Nombre d'Installations 315
Version Actuelle 1.2
Dernière Mise à Jour 2016-11-05
Date de Publication 2016-11-05
Évaluation 4.75/5 Total 4 Évaluations
Développeur Paul Irish
Type de Paiement free
Site Web de l'Extension https://github.com/paulirish/CopyLink-extension
URL de la Page d'Aide https://github.com/paulirish/CopyLink-extension/issues
Langues Prises en Charge en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "background": {
        "page": "background.html",
        "persistent": false
    },
    "browser_action": {
        "default_icon": "icon64.png",
        "default_title": "Copy HTML Link"
    },
    "description": "Copy link to the current page (with page title) to the clipboard.",
    "icons": {
        "128": "icon128.png",
        "16": "icon16.png",
        "32": "icon32.png",
        "64": "icon64.png"
    },
    "name": "Copy HTML Link",
    "permissions": [
        "activeTab",
        "clipboardWrite",
        "contextMenus"
    ],
    "version": "1.2",
    "commands": {
        "copy-html-link": {
            "suggested_key": {
                "default": "Alt+Shift+C",
                "mac": "MacCtrl+Shift+C"
            },
            "description": "Copy link of the page (with title)"
        }
    }
}