Fitnesse Viewer

Fitnesse Viewer

Show all scenarios on the page

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Fitnesse Viewer",
  "version": "0.2.10",
  "description": "Show all scenarios on the page",
  "content_security_policy": "default-src 'self'",
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistant": false
  },
  "permissions": [
    "http://*/*",
    "https://*/*"
  ],
  "page_action": {
    "default_icon": "icon.png",
    "default_title": "Click to see Fitnesse Scenarios on the page"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "css": [
        "styles/base.css"
      ],
      "js": [
        "lib/jquery-1.4.4.js",
        "lib/base.js",
        "lib/deps.js",
        "templates/scenarios.js",
        "templates/soyutils.js",
        "utils.js",
        "core.js",
        "ui.js",
        "inspector.js"
      ]
    }
  ]
}