FarmHand

FarmHand

General QoL enhancements to the FarmRPG UI

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "FarmHand",
  "version": "1.4.0",
  "manifest_version": 3,
  "description": "General QoL enhancements to the FarmRPG UI",
  "options_ui": {
    "page": "options.html",
    "open_in_tab": false
  },
  "permissions": [
    "storage"
  ],
  "content_scripts": [
    {
      "all_frames": true,
      "run_at": "document_end",
      "matches": [
        "https://farmrpg.com/*"
      ],
      "css": [
        "css/style.css"
      ],
      "js": [
        "thirdParty/jquery-3.6.0.min.js",
        "farmhand.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "img/*.svg",
        "options.html"
      ],
      "matches": [
        "https://farmrpg.com/*"
      ]
    }
  ],
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  }
}