Copy Link

Copy HTML friendly link

What is Copy Link?

Copy Link is a Chrome extension developed by Rhysdesign, and its main feature is "Copy HTML friendly link".

Extension Screenshots

screenshot

Download Copy Link Extension CRX File

Download Copy Link extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Copy Link Copy Link
ID kpphmkglkoebfnnlkohmbfacfokmoeob
Official URL https://chromewebstore.google.com/detail/copy-link/kpphmkglkoebfnnlkohmbfacfokmoeob
Description Copy HTML friendly link
File Size 37.89 KB
Installation Count 137
Current Version 0.2
Last Updated 2014-01-24
Publish Date 2014-01-23
Rating 2.00/5 Total 1 Ratings
Developer Rhysdesign
Payment Type free
Supported Languages 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"
    }
}