梓潼网站爬虫

梓潼网站爬虫

网站链接爬取工具

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "梓潼网站爬虫",
  "version": "1.4.0",
  "description": "网站链接爬取工具",
  "icons": {
    "16": "img/icon.png",
    "48": "img/icon.png",
    "128": "img/icon.png"
  },
  "background": {
    "page": "view/background.html"
  },
  "browser_action": {
    "default_icon": "img/icon.png",
    "default_title": "梓潼网站爬虫",
    "default_popup": "view/popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/jquery.min.js",
        "js/content-script.js"
      ],
      "run_at": "document_start"
    }
  ],
  "permissions": [
    "http://*/*",
    "https://*/*"
  ],
  "web_accessible_resources": [
    "js/jquery.min.js",
    "js/jquery.base64.js",
    "js/crawler.js"
  ],
  "homepage_url": "https://blog.ntan520.com",
  "default_locale": "zh_CN"
}