Copy HTML Link

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

Hvad er Copy HTML Link?

Copy HTML Link er en Chrome-udvidelse udviklet af Paul Irish, og dens hovedfunktion er "Copy link to the current page (with page title) to the clipboard.".

Download Copy HTML Link-udvidelses-CRX-fil

Download Copy HTML Link-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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                    

Grundlæggende oplysninger om udvidelsen

Navn Copy HTML Link Copy HTML Link
ID ipefndfjbbonoeiaggfhibcnimekokjl
Officiel URL https://chrome.google.com/webstore/detail/copy-html-link/ipefndfjbbonoeiaggfhibcnimekokjl
Beskrivelse Copy link to the current page (with page title) to the clipboard.
Filstørrelse 17.37 KB
Antal Installationer 315
Nuværende Version 1.2
Senest Opdateret 2016-11-05
Udgivelsesdato 2016-11-05
Bedømmelse 4.75/5 Samlet 4 Bedømmelser
Udvikler Paul Irish
Betalingsmetode free
Udvidelseswebsted https://github.com/paulirish/CopyLink-extension
Hjælpeside-URL https://github.com/paulirish/CopyLink-extension/issues
Understøttede Sprog 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)"
        }
    }
}