舆情助手-测试版

舆情助手-测试版

简单易用的舆情信息采集助手,基于谷歌浏览器,将页面信息采集并保存在舆情处置系统中,方便直接处置!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "舆情助手-测试版",
  "description": "简单易用的舆情信息采集助手,基于谷歌浏览器,将页面信息采集并保存在舆情处置系统中,方便直接处置!",
  "version": "0.0.3",
  "browser_action": {
    "default_icon": "icons/icon_gray-38.png",
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "icons/icon.png",
    "128": "icons/icon.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
  "permissions": [
    "tabs",
    "notifications",
    "webRequest",
    "webRequestBlocking",
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://*.mentworrydis.cac.dacube.com.cn/*"
      ],
      "js": [
        "js/content.js"
      ],
      "run_at": "document_end"
    },
    {
      "matches": [
        "*://*.yqt365.com/*"
      ],
      "js": [
        "js/matches.js"
      ],
      "run_at": "document_end"
    }
  ],
  "web_accessible_resources": [
    "fonts/*",
    "icons/*"
  ]
}