自动回复隐藏帖

自动回复隐藏帖

支持预先定义回复消息,扩展在检测到隐藏帖时会从中随机选择一条自动回复;回复之前若检测到用户未登录,会提示并引导用户去登录。

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "自动回复隐藏帖",
  "description": "支持预先定义回复消息,扩展在检测到隐藏帖时会从中随机选择一条自动回复;回复之前若检测到用户未登录,会提示并引导用户去登录。",
  "manifest_version": 2,
  "version": "1.0",
  "icons": {
    "16": "logo.png",
    "48": "logo.png",
    "128": "logo.png"
  },
  "author": "Milk Lee( [email protected] )",
  "permissions": [
    "*://*/*",
    "storage"
  ],
  "background": {
    "scripts": [
      "bg.js"
    ],
    "persistent": false
  },
  "options_page": "options.html",
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "content.js"
      ],
      "all_frames": true,
      "run_at": "document_end"
    }
  ]
}