SaaS Presenter Notes by Demo Gorilla

SaaS Presenter Notes by Demo Gorilla

Demo your SaaS tool better with all your best points always at your fingertips.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "action": {},
  "background": {
    "service_worker": "background.bundle.js"
  },
  "content_scripts": [
    {
      "js": [
        "demogorillainject.bundle.js"
      ],
      "matches": [
        "https://app.demogorilla.com/presenter/*"
      ]
    },
    {
      "js": [
        "google_slides.bundle.js"
      ],
      "matches": [
        "https://docs.google.com/presentation/d/*"
      ]
    }
  ],
  "declarative_net_request": {
    "rule_resources": [
      {
        "enabled": true,
        "id": "dg_ruleset_1",
        "path": "rules_1.json"
      }
    ]
  },
  "description": "Demo your SaaS tool better with all your best points always at your fingertips.",
  "externally_connectable": {
    "matches": [
      "https://*.demogorilla.com/*",
      "https://*.sentry.io/*",
      "https://*.posthog.com/*"
    ]
  },
  "host_permissions": [
    "https://*/*",
    "http://*/*"
  ],
  "icons": {
    "16": "icons/projector-16.png",
    "48": "icons/projector-48.png",
    "128": "icons/projector-128.png"
  },
  "manifest_version": 3,
  "name": "SaaS Presenter Notes by Demo Gorilla",
  "permissions": [
    "scripting",
    "storage",
    "tabs",
    "declarativeNetRequest",
    "debugger"
  ],
  "version": "2.0.24"
}