copy 2 clipboard with ease

copy 2 clipboard with ease

a simple way to copy tab title and url with ease

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "2.1.0",
  "name": "copy 2 clipboard with ease",
  "manifest_version": 2,
  "description": "a simple way to copy tab title and url with ease",
  "minimum_chrome_version": "29",
  "icons": {
    "16": "img/icon-16.png",
    "128": "img/icon-128.png"
  },
  "background": {
    "page": "background.html"
  },
  "options_page": "options.html",
  "browser_action": {
    "default_icon": {
      "19": "img/icon-19.png",
      "38": "img/icon-38.png"
    },
    "default_title": "copy 2 clipboard with ease",
    "default_popup": "popup.html"
  },
  "permissions": [
    "background",
    "activeTab",
    "contextMenus",
    "storage",
    "clipboardWrite",
    "https://*/*",
    "http://*/*"
  ],
  "content_security_policy": "default-src 'self'; script-src 'self' https://apis.google.com https://fonts.gstatic.com 'unsafe-eval'; object-src 'self'; connect-src http: https:; style-src 'self' chrome-extension: * 'unsafe-inline' https://fonts.gstatic.com; img-src 'self' https: http: data:; frame-src https: http:; font-src data:;",
  "web_accessible_resources": [
    "popup.html",
    "options.html"
  ]
}