Product Feedback Collector

Product Feedback Collector

Collects product feedback by presenting a form. The form itself can be created in Google Forms or any other survey platform

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Product Feedback Collector",
  "version": "0.0.3",
  "description": "Collects product feedback by presenting a form. The form itself can be created in Google Forms or any other survey platform",
  "homepage_url": "https://getthematic.com",
  "manifest_version": 2,
  "minimum_chrome_version": "74",
  "icons": {
    "192": "logo.png"
  },
  "permissions": [
    "storage",
    "contextMenus"
  ],
  "options_ui": {
    "chrome_style": true,
    "page": "options.html"
  },
  "browser_action": {
    "default_icon": {
      "192": "logo.png"
    },
    "default_title": "Send Feedback to Team"
  },
  "background": {
    "persistent": false,
    "scripts": [
      "browser-polyfill.min.js",
      "background.js"
    ]
  }
}