TVple Eraser

TVple Eraser

이 확장기능은 Youtube에서 Tvple 불펌 영상을 보이지 않도록 해 줍니다.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "TVple Eraser",
  "description": "이 확장기능은 Youtube에서 Tvple 불펌 영상을 보이지 않도록 해 줍니다.",
  "version": "3.0",
  "icons": {
    "48": "Resources/48.png"
  },
  "permissions": [
    "storage"
  ],
  "content_scripts": [
    {
      "run_at": "document_end",
      "matches": [
        "https://www.youtube.com/*"
      ],
      "js": [
        "neo_tvple.js"
      ],
      "default_icon": "Resources/48.png"
    }
  ],
  "browser_action": {
    "default_icon": {
      "48": "Resources/48.png"
    }
  },
  "options_ui": {
    "page": "Control/Control-panel.html",
    "chrome_style": true
  }
}