FormQA - Simple Browser Automation for Teams

FormQA - Simple Browser Automation for Teams

Record, Run and Share Browser Automations with your whole Team.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "FormQA - Simple Browser Automation for Teams",
  "version": "1.0.2",
  "manifest_version": 2,
  "description": "Record, Run and Share Browser Automations with your whole Team.",
  "homepage_url": "https://formqa.com",
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": true
  },
  "content_scripts": [
    {
      "matches": [
        "https://formqa.com/plugin"
      ],
      "js": [
        "activation.js"
      ]
    },
    {
      "matches": [
        "https://formqa.com/plugin/sign-out"
      ],
      "js": [
        "sign-out.js"
      ]
    }
  ],
  "browser_action": {
    "default_title": "FormQA"
  },
  "icons": {
    "16": "icons/formqa-16.png",
    "48": "icons/formqa-48.png",
    "128": "icons/formqa-128.png"
  },
  "permissions": [
    "<all_urls>",
    "storage",
    "activeTab",
    "https://formqa.com/*"
  ]
}