UI Options Plus (UIO+)

UI Options Plus (UIO+)

User Interface Options Plus (UIO+) allows you to customize websites to match your own personal needs and preferences.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "UI Options Plus (UIO+)",
  "short_name": "UIO+",
  "version": "0.3.0",
  "description": "User Interface Options Plus (UIO+) allows you to customize websites to match your own personal needs and preferences.",
  "author": "Fluid Project",
  "permissions": [
    "contextMenus",
    "scripting",
    "storage",
    "tabs"
  ],
  "host_permissions": [
    "*://*/*"
  ],
  "action": {
    "default_title": "UIO+",
    "default_popup": "html/adjusters.html",
    "default_icon": {
      "16": "images/gears_16.png",
      "24": "images/gears_24.png",
      "32": "images/gears_32.png"
    }
  },
  "background": {
    "service_worker": "js/background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "css": [
        "lib/infusion/src/framework/preferences/css/Enactors.css",
        "lib/infusion/src/components/orator/css/Orator.css",
        "css/enactors.css"
      ],
      "js": [
        "lib/infusion/dist/infusion-uio.js",
        "js/webInjection.js",
        "js/schemas.js",
        "js/store.js",
        "js/contentView.js",
        "js/panels.js",
        "js/enactors.js",
        "js/enhancer.js",
        "js/prefsEditor.js"
      ]
    }
  ],
  "commands": {
    "_execute_action": {
      "suggested_key": {
        "default": "Ctrl+Shift+U"
      }
    }
  },
  "icons": {
    "16": "images/GearHeart_Mixed_15x15.png",
    "32": "images/GearHeart_Mixed_31x31.png",
    "48": "images/GearHeart_Mixed_47x47.png",
    "128": "images/GearHeart_Mixed_127x127.png"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "lib/infusion/**.*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}