Examine source code of Rapise Plugin for Firefox

Inspect and view changes in Rapise Plugin for Firefox source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "manifest_version": 2,
  "name": "RapiseFF",
  "short_name": "Rapise Test Suite Support for Chrome.",
  "description": "This extension allows the Rapise test automation system to record, learn and playback automated tests using the Mozilla Firefox browser (version 57 and higher, Rapise 5.4 and higher).",
  "version": "5.0.6",
  "applications": {
    "gecko": {
      "id": "rapisefirefox@inflectra.com",
      "strict_min_version": "50.0"
    }
  },
  "background": {
    "page": "background.html"
  },
  "permissions": [
    "nativeMessaging",
    "tabs",
    "webNavigation",
    "http://*/*",
    "https://*/*"
  ],
  "icons": {
    "16": "icons/16.png",
    "24": "icons/24.png",
    "32": "icons/32.png",
    "48": "icons/48.png",
    "64": "icons/64.png",
    "96": "icons/96.png",
    "128": "icons/128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "all_frames": true,
      "js": [
        "injectedJS.js"
      ],
      "match_about_blank": true
    }
  ]
}