Tuning Videos

Tuning Videos

Great extension to adjust your video temperature and many other properties! Therefore Tuning Videos helps protecting your eyes and…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Tuning Videos",
  "description": "",
  "version": "1.0.0.13",
  "manifest_version": 3,
  "default_locale": "en",
  "offline_enabled": true,
  "action": {
    "default_title": "__MSG_app_name__",
    "default_icon": "img/16.png",
    "default_popup": "index.html"
  },
  "content_scripts": [
    {
      "all_frames": true,
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "content/content.js"
      ],
      "run_at": "document_end"
    }
  ],
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "storage",
    "alarms"
  ],
  "host_permissions": [
    "http://*/*",
    "https://*/*"
  ],
  "icons": {
    "16": "img/16.png",
    "32": "img/32.png",
    "64": "img/64.png",
    "128": "img/128.png"
  }
}