Reprise Product Capture

Reprise Product Capture

A companion app to https://reprise.com/

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Reprise Product Capture",
  "version": "5.0.22",
  "version_name": "5.0.22 3.19.2024.3.55.29N",
  "manifest_version": 3,
  "description": "A companion app to https://reprise.com/",
  "homepage_url": "https://reprise.com/",
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "default_locale": "en",
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "action": {
    "default_icon": "icons/icon19.png",
    "default_title": "Reprise Product Capture",
    "default_popup": "popup.html"
  },
  "incognito": "split",
  "permissions": [
    "activeTab",
    "storage",
    "management",
    "cookies",
    "debugger",
    "unlimitedStorage"
  ],
  "host_permissions": [
    "https://login.getreprise.com/",
    "<all_urls>"
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self';",
    "sandbox": "sandbox allow-scripts; script-src 'sha256-USemta+v1bzB+c0moeKagBQiDcwA0ZJczvFb9krvE2Y=' 'self';"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "pendo.js",
        "styles.css",
        "pendo.min.js",
        "highcharts.js",
        "icons/code_download.gif"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "commands": {
    "capture_page": {
      "suggested_key": {
        "default": "Ctrl+Shift+S",
        "mac": "Command+Shift+S"
      },
      "description": "Capture current page."
    }
  },
  "content_scripts": [
    {
      "all_frames": false,
      "match_about_blank": true,
      "matches": [
        "https://*/*",
        "http://*/*"
      ],
      "js": [
        "page.js"
      ]
    },
    {
      "all_frames": true,
      "match_about_blank": true,
      "matches": [
        "https://*/*",
        "http://*/*"
      ],
      "js": [
        "iframes.js"
      ],
      "run_at": "document_idle"
    },
    {
      "all_frames": true,
      "match_about_blank": true,
      "matches": [
        "https://*/*",
        "http://*/*"
      ],
      "js": [
        "pendo.min.js"
      ],
      "run_at": "document_idle"
    }
  ]
}