Simple Web Scraper (Free)

Simple Web Scraper (Free)

Scraping the values ​​of multiple web page META tags, JS variables, etc. at once.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "version": "1.4.0",
  "name": "__MSG_extName__",
  "short_name": "__MSG_extNameShort__",
  "description": "__MSG_extDescription__",
  "default_locale": "en",
  "icons": {
    "32": "32.png",
    "48": "48.png",
    "128": "128.png"
  },
  "background": {
    "scripts": [
      "common.js",
      "background.js"
    ],
    "persistent": true
  },
  "browser_action": {
    "default_icon": "38.png",
    "default_popup": "popup.html",
    "default_title": "__MSG_extNameShort__"
  },
  "permissions": [
    "tabs",
    "http://*/*",
    "https://*/*",
    "storage",
    "contextMenus"
  ],
  "options_page": "options.html",
  "incognito": "split",
  "content_security_policy": "script-src 'self' 'unsafe-eval' https://www.google-analytics.com; object-src 'self'"
}