CrowdSurfer

CrowdSurfer

Seamless Crowdsourcing of Design Feedback. Developed by Karlsruhe Institute of Technology (KIT)

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "CrowdSurfer",
  "description": "Seamless Crowdsourcing of Design Feedback. Developed by Karlsruhe Institute of Technology (KIT)",
  "version": "1.1.7",
  "icons": {
    "16": "src/style/images/logo-128.png",
    "48": "src/style/images/logo-128.png",
    "128": "src/style/images/logo-128.png"
  },
  "action": {
    "default_title": "CrowdSurfer",
    "default_popup": "dist/index.html"
  },
  "permissions": [
    "storage",
    "activeTab"
  ],
  "host_permissions": [
    "*://*.wikipedia.org/"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "js": [
        "dist/main.js"
      ],
      "matches": [
        "https://*/*"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "*.html",
        "*.css",
        "*.woff",
        "*.ttf"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}