Dream Digital Data Scraper

Dream Digital Data Scraper

Search engine scraping tool. Used for scraping the results of Google search pages.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Dream Digital Data Scraper",
  "description": "Search engine scraping tool. Used for scraping the results of Google search pages.",
  "version": "1.8",
  "manifest_version": 2,
  "page_action": {
    "default_popup": "popup.html",
    "default_icon": "images/logo-color32.png"
  },
  "permissions": [
    "activeTab",
    "declarativeContent"
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.google.com/search?*"
      ],
      "all_frames": true,
      "js": [
        "content.js"
      ]
    }
  ],
  "icons": {
    "16": "images/logo-color16.png",
    "32": "images/logo-color32.png",
    "48": "images/logo-color48.png",
    "128": "images/logo-color128.png"
  }
}