Cyberaffiti

Cyberaffiti

어린이들이 시청하기에 부적절한 인터넷 방송을 선별적으로 차단합니다. 당신의 자녀를 보호하십시오.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Cyberaffiti",
  "version": "1.0.4",
  "description": "어린이들이 시청하기에 부적절한 인터넷 방송을 선별적으로 차단합니다. 당신의 자녀를 보호하십시오.",
  "browser_action": {
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "background": {
    "scripts": [
      "redirect.js",
      "redirect_live.js",
      "jquery-2.1.4.js",
      "blockURL_list.js"
    ],
    "persistent": true
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.youtube.com/*"
      ],
      "js": [
        "jquery-2.1.4.js",
        "blockURL_list.js",
        "fadeout_youtube.js"
      ]
    },
    {
      "matches": [
        "https://www.twitch.tv/*"
      ],
      "js": [
        "jquery-2.1.4.js",
        "blockURL_list.js",
        "fadeout_twitch.js",
        "live_chat_twitch.js"
      ]
    },
    {
      "matches": [
        "http://www.afreecatv.com/*",
        "https://www.afreecatv.com/*",
        "http://bj.afreecatv.com/*",
        "http://vod.afreecatv.com/*",
        "http://larva.afreecatv.com/*",
        "https://bj.afreecatv.com/*",
        "https://vod.afreecatv.com/*",
        "https://larva.afreecatv.com/*",
        "http://sbs.afreecatv.com/*",
        "https://sbs.afreecatv.com/*",
        "http://play.afreecatv.com/*",
        "https://play.afreecatv.com/*"
      ],
      "js": [
        "jquery-2.1.4.js",
        "blockURL_list.js",
        "fadeout_afreeca.js",
        "live_chat_afreeca.js"
      ]
    }
  ],
  "permissions": [
    "tabs",
    "webRequest",
    "webRequestBlocking",
    "https://www.youtube.com/*",
    "https://www.twitch.tv/*",
    "http://www.afreecatv.com/*",
    "https://www.afreecatv.com/*",
    "http://bj.afreecatv.com/*",
    "http://vod.afreecatv.com/*",
    "http://larva.afreecatv.com/*",
    "https://bj.afreecatv.com/*",
    "https://vod.afreecatv.com/*",
    "https://larva.afreecatv.com/*",
    "http://sbs.afreecatv.com/*",
    "https://sbs.afreecatv.com/*",
    "http://play.afreecatv.com/*",
    "https://play.afreecatv.com/*",
    "http://150.95.153.18:8000/*"
  ]
}