Clipboard to Contact

Clipboard to Contact

This extension renders and save contacts

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Clipboard to Contact",
  "description": "This extension renders and save contacts",
  "version": "2.2",
  "default_locale": "en",
  "content_security_policy": "script-src 'self'; object-src 'self'",
  "icons": {
    "48": "icons/icon.png"
  },
  "browser_action": {
    "default_icon": {
      "32": "icons/icon.png"
    },
    "default_title": "Clipboard to Contact",
    "default_popup": "popup.html"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "permissions": [
    "tabs",
    "http://*.cliptocontact.com/*",
    "http://*.bid2.net/*",
    "contextMenus",
    "activeTab",
    "storage"
  ],
  "web_accessible_resources": [
    "/test1.html",
    "images/splashscreen.jpg"
  ]
}