Always Like You - Youtube

Always Like You - Youtube

좋아하는 채널 영상에 좋아요를 잊지 않도록 도와줍니다! 채널 이름을 등록하거나 구독한 채널의 영상을 시청할 때 대신 좋아요를 눌러줍니다. I help you remember to press the like button on…

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Always Like You - Youtube",
  "version": "2.2",
  "permissions": [
    "storage"
  ],
  "background": {
    "service_worker": "src/scripts/background.js"
  },
  "icons": {
    "16": "src/images/icon16.png",
    "48": "src/images/icon48.png",
    "128": "src/images/icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.youtube.com/*"
      ],
      "css": [
        "src/style/style.css"
      ],
      "js": [
        "src/scripts/content-script.js"
      ]
    }
  ],
  "action": {
    "default_popup": "src/popup/popup.html",
    "default_icon": {
      "16": "src/images/icon16.png",
      "48": "src/images/icon48.png",
      "128": "src/images/icon128.png"
    }
  },
  "web_accessible_resources": [
    {
      "resources": [
        "src/images/icon16.png"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}