Updentity Data Grabber

Updentity Data Grabber

Updentity Data Grabber: Grabs contact data from websites and saves to your Updentity account

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "http://clients2.google.com/service/update2/crx",
  "name": "Updentity Data Grabber",
  "version": "1.1.4",
  "manifest_version": 2,
  "description": "Updentity Data Grabber: Grabs contact data from websites and saves to your Updentity account",
  "permissions": [
    "tabs",
    "contextMenus",
    "https://*/*",
    "http://*/*"
  ],
  "browser_action": {
    "default_icon": "img/p64.png"
  },
  "icons": {
    "32": "img/p32.png",
    "64": "img/p64.png",
    "128": "img/p128.png"
  },
  "background": {
    "scripts": [
      "script/jquery-1.7.2.min.js",
      "script/jquery.cookie.js",
      "script/Updy_engine.js",
      "script/Updy_background.js"
    ]
  },
  "web_accessible_resources": [
    "login.html",
    "panel.html",
    "img/icon.png"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://*/*",
        "http://*/*",
        "file://*/*"
      ],
      "css": [
        "style/Updy_content.css"
      ],
      "js": [
        "script/jquery-1.7.2.min.js",
        "script/Updy_engine.js",
        "script/Updy_content.js"
      ]
    }
  ]
}