FarmRPG Helper - Non-Official

FarmRPG Helper - Non-Official

The goal of this extension is to help your quality of life in FarmRPG - This is not an official extension, it is fan made.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "FarmRPG Helper - Non-Official",
  "description": "The goal of this extension is to help your quality of life in FarmRPG - This is not an official extension, it is fan made.",
  "version": "1.1.9",
  "action": {
    "default_icon": "robot_farmer.png",
    "default_title": "Helper Settings",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "https://farmrpg.com/*"
      ],
      "js": [
        "script.js"
      ]
    }
  ],
  "background": {
    "service_worker": "notifications.js"
  },
  "permissions": [
    "storage"
  ],
  "optional_permissions": [
    "notifications"
  ]
}