ScreenScraper

ScreenScraper

Tool to automatically grab data from sites

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "ScreenScraper",
  "description": "Tool to automatically grab data from sites",
  "version": "0.3.1",
  "icons": {
    "16": "logo_16.png",
    "48": "logo_48.png",
    "128": "logo_128.png"
  },
  "content_security_policy": "script-src 'self' https://ssl.google-analytics.com; object-src 'self'",
  "content_scripts": [
    {
      "all_frames": false,
      "js": [
        "jquery-1.9.1.min.js",
        "myscript.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    }
  ],
  "browser_action": {
    "default_title": "ScreenScraper",
    "default_popup": "popup.html",
    "default_icon": {
      "19": "logo_19.png",
      "38": "logo_38.png"
    }
  },
  "permissions": [
    "http://*/*",
    "https://*/*",
    "tabs"
  ]
}