Copy HTML Link

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

Vad är Copy HTML Link?

Copy HTML Link är en Chrome-tillägg utvecklad av Paul Irish, och dess huvudfunktion är "Copy link to the current page (with page title) to the clipboard.".

Ladda ner Copy HTML Link-förlängningens CRX-fil

Ladda ner Copy HTML Link-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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äggande Information om Tillägg

Namn Copy HTML Link Copy HTML Link
ID ipefndfjbbonoeiaggfhibcnimekokjl
Officiell webbadress https://chrome.google.com/webstore/detail/copy-html-link/ipefndfjbbonoeiaggfhibcnimekokjl
Beskrivning Copy link to the current page (with page title) to the clipboard.
Filstorlek 17.37 KB
Antal Installationer 315
Aktuell Version 1.2
Senast Uppdaterad 2016-11-05
Publiceringsdatum 2016-11-05
Betyg 4.75/5 Totalt 4 Betyg
Utvecklare Paul Irish
Betalningssätt free
Tilläggswebbplats https://github.com/paulirish/CopyLink-extension
Hjälpsida URL https://github.com/paulirish/CopyLink-extension/issues
Stödda Språk 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)"
        }
    }
}