AnimeSR

AnimeSR is a browser extension for enhancing the image quality of anime on web pages in real time.
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "AnimeSR",
  "description": "__MSG_ext_description__",
  "version": "0.0.3",
  "manifest_version": 3,
  "default_locale": "en",
  "permissions": [
    "storage",
    "scripting"
  ],
  "host_permissions": [
    "*://*/*"
  ],
  "background": {
    "service_worker": "js/background.js"
  },
  "action": {
    "default_icon": {
      "16": "icons/off/icon16.png",
      "48": "icons/off/icon48.png",
      "128": "icons/off/icon128.png"
    },
    "default_popup": "popup.html"
  },
  "options_page": "options.html",
  "icons": {
    "16": "icons/on/icon16.png",
    "48": "icons/on/icon48.png",
    "128": "icons/on/icon128.png"
  },
  "commands": {
    "01-animeSrOn": {
      "suggested_key": {
        "default": "Alt+Shift+Q"
      },
      "description": "__MSG_turn_on_anime_sr__"
    },
    "02-animeSrOff": {
      "suggested_key": {
        "default": "Alt+Shift+W"
      },
      "description": "__MSG_turn_off_anime_sr__"
    },
    "03-triggleFpsWindow": {
      "description": "__MSG_fps_winodw__"
    },
    "04-reducePower": {
      "suggested_key": {
        "default": "Alt+Shift+1"
      },
      "description": "__MSG_reduce_power__"
    },
    "05-increasePower": {
      "suggested_key": {
        "default": "Alt+Shift+2"
      },
      "description": "__MSG_increase_power__"
    }
  }
}