Review

Review

审核交互插件

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Review",
  "version": "1.0",
  "description": "审核交互插件",
  "permissions": [
    "*://*.rocket.coral.qq.com/*",
    "tabs",
    "storage",
    "declarativeContent",
    "notifications"
  ],
  "icons": {
    "24": "images/rocket_24.png",
    "32": "images/rocket_32.png",
    "48": "images/rocket_48.png",
    "64": "images/rocket_64.png",
    "72": "images/rocket_72.png",
    "96": "images/rocket_96.png"
  },
  "background": {
    "scripts": [
      "js/background.js"
    ]
  },
  "browser_action": {
    "default_icon": {
      "24": "images/rocket_24.png",
      "32": "images/rocket_32.png",
      "48": "images/rocket_48.png",
      "64": "images/rocket_64.png",
      "72": "images/rocket_72.png",
      "96": "images/rocket_96.png"
    },
    "default_title": "Ashu的插件",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "*://rocket.coral.qq.com/om/omvideocheck?12"
      ],
      "js": [
        "js/cannot_touch.js"
      ]
    }
  ]
}