SSAFix: Youtube Live Prefix

SSAFix: Youtube Live Prefix

유튜브 라이브의 댓글작성시 접두어를 자동으로 붙여주는 크롬 확장 프로그램입니다.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "SSAFix: Youtube Live Prefix",
  "description": "유튜브 라이브의 댓글작성시 접두어를 자동으로 붙여주는 크롬 확장 프로그램입니다.",
  "version": "1.0.3",
  "manifest_version": 3,
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://www.youtube.com/*",
        "http://www.youtube.com/*"
      ],
      "js": [
        "content_scripts.js"
      ]
    },
    {
      "matches": [
        "https://dydwkd486.github.io/ssafy-sign/*",
        "http://dydwkd486.github.io/ssafy-sign/*"
      ],
      "js": [
        "money_generator_scripts.js"
      ]
    }
  ],
  "action": {
    "default_popup": "popup.html",
    "default_icon": "images/logo.png"
  },
  "icons": {
    "16": "images/logo.png",
    "48": "images/logo.png",
    "128": "images/logo.png"
  },
  "options_page": "options.html"
}