ReqForge for Chrome

ReqForge for Chrome

Helping you create unambiguous, understandable User Stories and Acceptance Criteria.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "ReqForge for Chrome",
  "short_name": "ReqForge",
  "version": "1.6",
  "description": "Helping you create unambiguous, understandable User Stories and Acceptance Criteria.\n",
  "icons": {
    "16": "assets/icon-16px.png",
    "48": "assets/icon-48px.png",
    "128": "assets/icon-128px.png"
  },
  "permissions": [
    "contextMenus"
  ],
  "background": {
    "scripts": [
      "js/background.js"
    ],
    "persistent": true
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/content.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "dist/index.html",
    "assets/icon-48px.png"
  ],
  "browser_action": {
    "default_icon": "assets/icon-48px.png",
    "default_title": "ReqForge"
  }
}