Unreal Engine Api Usability Mod

Unreal Engine Api Usability Mod

This improves the useability of the Unreal Engine 4 API by adding useful links.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Unreal Engine Api Usability Mod",
  "description": "This improves the useability of the Unreal Engine 4 API by adding useful links.",
  "version": "1.4",
  "content_scripts": [
    {
      "matches": [
        "https://docs.unrealengine.com/*"
      ],
      "js": [
        "myscript.js"
      ]
    }
  ],
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "permissions": [
    "storage"
  ],
  "options_ui": {
    "page": "options.html",
    "open_in_tab": false
  },
  "web_accessible_resources": [
    {
      "resources": [
        "pagescript.js"
      ],
      "matches": [
        "https://docs.unrealengine.com/*"
      ]
    }
  ]
}