SurveyTester Browser Extension

SurveyTester Browser Extension

Chrome Extension for testing surveys with SurveyTester. Check www.surveytester.com for more information.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "SurveyTester Browser Extension",
  "short_name": "SurveyTester Browser Extension",
  "version": "6.2.16",
  "manifest_version": 3,
  "description": "Chrome Extension for testing surveys with SurveyTester. Check www.surveytester.com for more information.",
  "icons": {
    "16": "images/SurveyTesterFavicon16.png",
    "128": "images/SurveyTesterFavicon128.png"
  },
  "action": {
    "default_popup": "about.html"
  },
  "default_locale": "en",
  "permissions": [
    "storage"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "fonts/*",
        "images/*.png"
      ],
      "matches": [
        "<all_urls>"
      ],
      "extension_ids": [],
      "use_dynamic_url": false
    }
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*",
        "*://*/*"
      ],
      "js": [
        "content.js"
      ],
      "css": [
        "styles.css"
      ],
      "all_frames": true
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}