Exploratory Testing Chrome Extension

Exploratory Testing Chrome Extension

Exploratory testing session using Chrome

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Exploratory Testing Chrome Extension",
  "short_name": "Chrome Exploratory Testing",
  "description": "Exploratory testing session using Chrome",
  "author": "@morvader",
  "version": "2.1.5",
  "icons": {
    "16": "/icons/iconbig.png",
    "48": "/icons/iconbig.png",
    "128": "/icons/iconbig.png"
  },
  "background": {
    "scripts": [
      "lib/browserInfo.js",
      "lib/date.js",
      "src/Annotation.js",
      "src/Session.js",
      "src/ExportSessionCSV.js",
      "src/JSonSessionService.js",
      "background.js"
    ],
    "persistent": true
  },
  "permissions": [
    "activeTab"
  ],
  "browser_action": {
    "default_icon": "/icons/iconbig.png",
    "default_popup": "popup.html"
  }
}