Web Scrapper Module

Web Scrapper Module

This extension allows you to scrape details from Website

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Web Scrapper Module",
  "description": "This extension allows you to scrape details from Website",
  "version": "1.1",
  "manifest_version": 2,
  "minimum_chrome_version": "34",
  "icons": {
    "128": "logo_icon256.png"
  },
  "background": {
    "scripts": [
      "jquery-min.js",
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "js": [
        "jquery-min.js",
        "bridge.js"
      ],
      "matches": [
        "*://*/*",
        "*://*.cozeva.com/*",
        "*://*.cozeva.me/*",
        "*://fiddle.jshell.net/*",
        "*://run.jsbin.io/*",
        "*://localhost/*"
      ]
    }
  ],
  "permissions": [
    "activeTab"
  ]
}