弹幕小助手

弹幕小助手

此插件用于直播网站自动连续发送弹幕

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "弹幕小助手",
  "author": "hxkkira",
  "description": "此插件用于直播网站自动连续发送弹幕",
  "version": "1.0",
  "browser_action": {
    "default_icon": {
      "16": "icon/icon_grey_16.png",
      "48": "icon/icon_active_48.png",
      "128": "icon/icon_active_128.png"
    },
    "default_popup": "popup.html",
    "default_title": "Click here!"
  },
  "content_scripts": [
    {
      "matches": [
        "*://www.douyu.com/*"
      ],
      "js": [
        "js/content.js"
      ]
    }
  ],
  "permissions": [
    "activeTab",
    "storage",
    "tabs"
  ]
}