Usertip Launcher

Usertip Launcher

Usertip Plugin to launch created walkthroughs

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Usertip Launcher",
  "description": "Usertip Plugin to launch created walkthroughs",
  "version": "1.8.5",
  "manifest_version": 3,
  "icons": {
    "16": "launcher-16x16.png",
    "48": "launcher-48x48.png",
    "128": "launcher-128x128.png"
  },
  "action": {
    "default_icon": "launcher-128x128.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "externally_connectable": {
    "ids": [
      "ceiihcjapecalcblnbcodnnkpbdbpbem"
    ],
    "matches": [
      "https://*.usertip.com/*"
    ]
  },
  "permissions": [
    "storage",
    "activeTab",
    "scripting",
    "tabs"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "options_page": "options.html",
  "web_accessible_resources": [
    {
      "resources": [
        "./contentscript.js",
        "tailwind.css",
        "Content.css",
        "launcher-128x128.png",
        "spacing-image.png",
        "framework.js",
        "inject_script.js"
      ],
      "matches": [
        "https://*/*",
        "http://*/*"
      ]
    }
  ]
}