APN Sidebar With nutrametrix

APN Sidebar With nutrametrix

Inject an APN sidebar on the current tab when the page action is clicked

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "APN Sidebar With nutrametrix",
  "manifest_version": 3,
  "description": "Inject an APN sidebar on the current tab when the page action is clicked",
  "version": "8",
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_icon": "default-icon.png",
    "default_title": "APN Sidebar"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "script.js"
      ]
    }
  ],
  "permissions": [
    "storage"
  ],
  "host_permissions": [
    "http://www.shop.com/*",
    "https://www.shop.com/*",
    "http://api.shop.com/*",
    "https://api.shop.com/*",
    "https://www.nutrametrix.com/*",
    "http://www.nutrametrix.com/*",
    "http://www.isotonix.com/*",
    "https://www.isotonix.com/*",
    "https://devapi2.shop.com/*"
  ],
  "options_ui": {
    "page": "options.html"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "apn-header-1.png",
        "apn-nm-header.svg"
      ],
      "matches": [
        "https://*.shop.com/*",
        "https://*.nutrametrix.com/*",
        "https://*.isotonix.com/*",
        "http://*.shop.com/*",
        "http://*.nutrametrix.com/*",
        "http://*.isotonix.com/*"
      ]
    }
  ],
  "icons": {
    "128": "icon_128.png"
  }
}