H264ify With Auto 1080

H264ify With Auto 1080

H264ify with Auto 1080 Chrome Extension saves you from buffering videos & lets you set default video quality on YouTube & more.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "H264ify With Auto 1080",
  "version": "1.1.0",
  "description": "H264ify with Auto 1080 Chrome Extension saves you from buffering videos & lets you set default video quality on YouTube & more. ",
  "icons": {
    "16": "video.png",
    "48": "video.png",
    "128": "video.png"
  },
  "action": {
    "default_icon": {
      "16": "video.png",
      "24": "video.png",
      "32": "video.png"
    },
    "default_title": "Changing quality of video",
    "default_popup": "popup.html"
  },
  "background": {
    "service_worker": "background.js"
  },
  "options_page": "options.html",
  "permissions": [
    "storage",
    "activeTab",
    "scripting"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "contentScript.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "inject.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "host_permissions": [
    "<all_urls>"
  ]
}