Examine source code of Web Recorder for Rocketbot

Inspect and view changes in Web Recorder for Rocketbot 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
{
  "name": "Web Recorder for Rocketbot",
  "description": "Rocketbot extension to record actions in the browser",
  "version": "4.0.2",
  "manifest_version": 2,
  "author": "Danilo Toro",
  "browser_action": {
    "default_title": "recorder",
    "default_icon": {
      "32": "img/Grabador_ISO02.png"
    }
  },
  "icons": {
    "16": "img/Grabador_ISO01.png",
    "128": "img/Grabador_ISO01.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "all_frames": true,
      "js": [
        "js/utils.js",
        "js/content.js"
      ]
    }
  ],
  "background": {
    "persistent": true,
    "scripts": [
      "js/utils.js",
      "background.js"
    ]
  },
  "permissions": [
    "activeTab",
    "downloads",
    "background",
    "tabs",
    "http://*/",
    "https://*/"
  ]
}