_bem_tv ext

_bem_tv ext

abematvを快適にする非公式の拡張機能(番組通知自動再生、コメントNGワード、映像上コメント流し、映像サイズ固定など様々な機能を柔軟に設定できます)

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "_bem_tv ext",
  "version": "0.16.19",
  "description": "abematvを快適にする非公式の拡張機能(番組通知自動再生、コメントNGワード、映像上コメント流し、映像サイズ固定など様々な機能を柔軟に設定できます)",
  "icons": {
    "128": "images/icon.png"
  },
  "permissions": [
    "storage",
    "alarms",
    "notifications",
    "contextMenus",
    "https://abema.tv/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://abema.tv/*"
      ],
      "js": [
        "scripts/contentScript.js"
      ],
      "run_at": "document_start"
    }
  ],
  "web_accessible_resources": [
    "scripts/contentScript.js",
    "styles/content.css",
    "jquery-3.2.1.min.js",
    "pages/option.html",
    "pages/notifylist.html",
    "images/gear.svg",
    "images/pip.svg",
    "images/mastodon-icon.svg",
    "images/mastodon-icon-blue.svg",
    "scripts/injection.js",
    "scripts/injection-xhr.js"
  ],
  "background": {
    "scripts": [
      "scripts/eventPage.js"
    ],
    "persistent": false
  },
  "minimum_chrome_version": "55",
  "options_page": "pages/option.html",
  "externally_connectable": {
    "ids": [
      "*"
    ],
    "matches": [
      "https://abema.tv/*"
    ]
  }
}