Copy Link

Copy HTML friendly link

Wat is Copy Link?

Copy Link is een Chrome-extensie ontwikkeld door Rhysdesign, en de belangrijkste functie is "Copy HTML friendly link".

Extensie Screenshots

screenshot

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

                        Copies links from Chrome's address bar so they can be pasted as an HTML tag. For example, copying:

http://www.example.com

from the address bar results in:

Example Domain

being pasted.                    

Basisinformatie over de Extensie

Naam Copy Link Copy Link
ID kpphmkglkoebfnnlkohmbfacfokmoeob
Officiële URL https://chromewebstore.google.com/detail/copy-link/kpphmkglkoebfnnlkohmbfacfokmoeob
Beschrijving Copy HTML friendly link
Bestandsgrootte 37.89 KB
Aantal Installaties 137
Huidige Versie 0.2
Laatst Bijgewerkt 2014-01-24
Publicatiedatum 2014-01-23
Beoordeling 2.00/5 Totaal 1 Beoordelingen
Ontwikkelaar Rhysdesign
Betalingswijze free
Ondersteunde Talen en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Copy Link",
    "description": "Copy HTML friendly link",
    "version": "0.2",
    "permissions": [
        "contextMenus",
        "activeTab",
        "tabs",
        "clipboardWrite",
        "notifications"
    ],
    "commands": {
        "copy-link": {
            "suggested_key": {
                "default": "Ctrl+U"
            },
            "description": "Copy link"
        }
    },
    "background": {
        "scripts": [
            "lib\/jquery.min.js",
            "lib\/background.js"
        ]
    },
    "page_action": {
        "default_icon": {
            "19": "link19.png",
            "38": "link38.png"
        },
        "default_title": "Copy link"
    },
    "manifest_version": 2,
    "icons": {
        "16": "link16.png",
        "128": "link128.png"
    }
}