Valorant New Tab

Valorant New Tab

Valorant new tab extension allows to add awesome wallpapers to the new tab

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "version": "1.0",
  "description": "Valorant new tab extension allows to add awesome wallpapers to the new tab",
  "chrome_url_overrides": {
    "newtab": "index.html"
  },
  "background": {
    "scripts": [
      "./js/event.js"
    ]
  },
  "name": "Valorant New Tab",
  "offline_enabled": true,
  "browser_action": {
    "default_title": "Valorant New Tab"
  },
  "icons": {
    "16": "icon/1.png",
    "48": "icon/2.png",
    "128": "icon/3.png"
  },
  "permissions": [
    "geolocation",
    "downloads",
    "unlimitedStorage",
    "http://*/",
    "https://*/",
    "http://*/*",
    "chrome://favicon/",
    "storage"
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}