Guidejar

Guidejar

Create product demos with just a few clicks - literally.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Guidejar",
  "version": "0.1.3",
  "description": "Create product demos with just a few clicks - literally.",
  "icons": {
    "16": "icons/icon_16.png",
    "32": "icons/icon_32.png",
    "48": "icons/icon_48.png",
    "128": "icons/icon_128.png"
  },
  "externally_connectable": {
    "matches": [
      "*://*.guidejar.com/*"
    ]
  },
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_title": "Guidejar"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "global.css",
        "fonts.css",
        "icons/*",
        "images/*",
        "fonts/*"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    }
  ],
  "permissions": [
    "storage",
    "tabs",
    "activeTab",
    "scripting"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_idle",
      "js": [
        "contentScript.js"
      ],
      "all_frames": true
    }
  ]
}