Grow Companion Extension

Grow Companion Extension

This extension will automatically refresh your page when a new update has been pushed out and you are in full screen mode.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Grow Companion Extension",
  "description": "This extension will automatically refresh your page when a new update has been pushed out and you are in full screen mode.",
  "version": "2.0.0",
  "manifest_version": 3,
  "permissions": [
    "declarativeContent",
    "power",
    "storage"
  ],
  "action": {
    "default_popup": "popup.html",
    "default_title": "Grow Companion Extension",
    "default_icon": {
      "16": "images/16.png",
      "32": "images/32.png",
      "48": "images/48.png",
      "128": "images/128.png"
    }
  },
  "icons": {
    "16": "images/16.png",
    "32": "images/32.png",
    "48": "images/48.png",
    "128": "images/128.png"
  },
  "background": {
    "service_worker": "js/background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.gogrow.com/*"
      ],
      "js": [
        "js/app.js"
      ]
    }
  ]
}