Q+

Q+

QQ Group Members data extractor. Quickly extract QQ group member QQ emails or other infomation, and export them in almost any form,…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "default_locale": "zh_CN",
  "name": "__MSG_extName__",
  "description": "__MSG_extDesc__",
  "version": "1.0.0.2",
  "permissions": [
    "storage",
    "activeTab",
    "declarativeNetRequest"
  ],
  "icons": {
    "16": "images/16.png",
    "48": "images/48.png",
    "128": "images/128.png"
  },
  "action": {
    "default_popup": "coms/action/index.html",
    "default_icon": "images/16.png",
    "default_title": "__MSG_extName__"
  },
  "content_scripts": [
    {
      "all_frames": false,
      "run_at": "document_end",
      "matches": [
        "https://qun.qq.com/*"
      ],
      "css": [
        "coms/content/main.css"
      ],
      "js": [
        "coms/content/main.js"
      ]
    }
  ],
  "background": {
    "service_worker": "background.js"
  }
}