Copy Link

Copy Link

Chrome Extension that enables you to copy the current page title and url easily.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Copy Link",
  "short_name": "Copy Link",
  "version": "1.1.0",
  "description": "Chrome Extension that enables you to copy the current page title and url easily.",
  "author": "1000ch",
  "icons": {
    "16": "icon/16.png",
    "48": "icon/48.png",
    "128": "icon/128.png"
  },
  "permissions": [
    "activeTab",
    "clipboardWrite",
    "*://*/*"
  ],
  "browser_action": {
    "default_title": "Copy Link",
    "default_popup": "./popup.html"
  },
  "offline_enabled": true
}