RuiJi Scraper Crawler

RuiJi Scraper Crawler

Quickly export data from web pages, save the results to excel, txt, CSV and other files, suitable for finance, network news, etc.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "author": "[email protected]",
  "background": {
    "scripts": [
      "/js/background.js"
    ],
    "persistent": true
  },
  "browser_action": {
    "default_icon": {
      "20": "/img/icon.png"
    },
    "default_popup": "popup.html",
    "default_title": "__MSG_name__"
  },
  "content_scripts": [
    {
      "all_frames": false,
      "css": [
        "/css/content-page.css",
        "/css/content-chain.css"
      ],
      "js": [
        "/js/content.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_idle"
    }
  ],
  "content_security_policy": "script-src 'self'; object-src 'self'",
  "default_locale": "en",
  "description": "__MSG_description__",
  "homepage_url": "http://www.scraper.top",
  "icons": {
    "16": "/img/icon.png",
    "48": "/img/icon48.png",
    "128": "/img/icon128.png"
  },
  "manifest_version": 2,
  "minimum_chrome_version": "22.0.0",
  "name": "__MSG_name__",
  "options_ui": {
    "page": "settings.html"
  },
  "options_page": "settings.html",
  "permissions": [
    "unlimitedStorage",
    "storage",
    "*://*/*"
  ],
  "version": "3.0.3",
  "web_accessible_resources": [
    "fonts/*",
    "libs/*",
    "*/*"
  ]
}