TimeGate Disable Delete

TimeGate Disable Delete

Disables the delete button where title contains Site or Employee

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "TimeGate Disable Delete",
  "description": "Disables the delete button where title contains Site or Employee",
  "version": "1.1",
  "manifest_version": 2,
  "icons": {
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://timegate.thefmcloud.com/TGNET_*/Site*.aspx*",
        "https://timegate.thefmcloud.com/TGNET_*/Employee*.aspx*"
      ],
      "js": [
        "deletebutton.js"
      ],
      "run_at": "document_end"
    }
  ]
}