ANIPLUS-X

ANIPLUS-X

애니플러스 공식 홈페이지 동영상 플레이어의 기능을 향상시켜드립니다.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "ANIPLUS-X",
  "version": "0.2.4",
  "description": "애니플러스 공식 홈페이지 동영상 플레이어의 기능을 향상시켜드립니다.",
  "icons": {
    "128": "128.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "browser_action": {
    "default_icon": "default/icon.png",
    "default_popup": "default/popup.html"
  },
  "content_scripts": [
    {
      "run_at": "document_start",
      "matches": [
        "*://*.aniplustv.com/*"
      ],
      "js": [
        "inject/global.js"
      ]
    },
    {
      "run_at": "document_start",
      "matches": [
        "*://*.aniplustv.com/tv/*"
      ],
      "js": [
        "inject/player.js"
      ]
    }
  ],
  "permissions": [
    "storage",
    "tabs",
    "management",
    "windows",
    "<all_urls>"
  ]
}