Uphint — Screenshots, SOPs & training

Uphint — Screenshots, SOPs & training

Create step-by-step guides, instantly. Screenshots and text descriptions are autogenerated

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "description": "Create step-by-step guides, instantly. Screenshots and text descriptions are autogenerated",
  "version": "1.0.5",
  "manifest_version": 3,
  "name": "Uphint — Screenshots, SOPs & training",
  "background": {
    "service_worker": "background.bundle.js"
  },
  "action": {
    "default_popup": "popup.html",
    "default_icon": "logoUPHINT_48X48.png"
  },
  "icons": {
    "16": "logoUPHINT_16X16.png",
    "48": "logoUPHINT_48X48.png",
    "128": "logoUPHINT_128X128.png"
  },
  "content_scripts": [
    {
      "alias": "ContentView",
      "matches": [
        "http://*/*",
        "https://*/*",
        "<all_urls>"
      ],
      "js": [
        "contentView.bundle.js"
      ]
    },
    {
      "alias": "EventCapture",
      "matches": [
        "http://*/*",
        "https://*/*",
        "<all_urls>"
      ],
      "match_about_blank": true,
      "js": [
        "eventCapture.bundle.js"
      ],
      "run_at": "document_start",
      "all_frames": true
    },
    {
      "alias": "MessageSender",
      "matches": [
        "https://app.uphint.com/*"
      ],
      "match_about_blank": true,
      "js": [
        "messageSenderScript.bundle.js"
      ],
      "run_at": "document_start"
    }
  ],
  "devtools_page": "devtools.html",
  "web_accessible_resources": [
    {
      "resources": [
        "logoUPHINT_16X16.png",
        "logoUPHINT_48X48.png",
        "logoUPHINT_128X128.png",
        "/assets/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "permissions": [
    "tabs",
    "storage",
    "scripting",
    "downloads"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "externally_connectable": {
    "matches": [
      "*://localhost/*",
      "https://uphint.biteindustry.es/*",
      "https://app.uphint.com/"
    ]
  }
}