Increase Screen Brightness

Increase Screen Brightness

Help us to increase the Screen Brightness of the Video streaming Websites such as Netflix, Prime, Hotstar, Wn, Flue & All

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Increase Screen Brightness",
  "version": "0.0.1",
  "description": "Help us to increase the Screen Brightness of the Video streaming Websites such as Netflix, Prime, Hotstar, Wn, Flue & All",
  "icons": {
    "128": "icons/icon128.png"
  },
  "browser_action": {
    "default_title": "Increase Screen Brightness",
    "default_popup": "src/popup.html"
  },
  "permissions": [],
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "src/contentscript.js"
      ]
    }
  ],
  "manifest_version": 2,
  "background": {
    "scripts": [
      "src/background.js"
    ]
  },
  "commands": {
    "increaseBrightness": {
      "suggested_key": {
        "default": "Ctrl+Shift+L",
        "mac": "Command+Shift+L"
      },
      "description": "Increase Brightness"
    },
    "decreaseBrightness": {
      "suggested_key": {
        "default": "Ctrl+Shift+K",
        "mac": "Command+Shift+K"
      },
      "description": "Decrease Brightness"
    }
  }
}