Refresh Citrix

Refresh Citrix

Chrome Extesnion will refresh the citrix page after 5 minutes

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Refresh Citrix",
  "description": "Chrome Extesnion will refresh the citrix page after 5 minutes ",
  "version": "0.0.3",
  "manifest_version": 3,
  "icons": {
    "16": "img/refreshCitrix32.png",
    "48": "img/refreshCitrix48.png",
    "128": "img/refreshCitrix128.png"
  },
  "action": {
    "default_title": "Refresh Citrix",
    "default_icon": "img/refreshCitrix32.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*/Citrix*",
        "https://*/citrix*"
      ],
      "js": [
        "content/content_page.js"
      ]
    }
  ]
}