Web Recorder for Rocketbot

Web Recorder for Rocketbot

Rocketbot extension to record actions in the browser

Additional files are visible only to premium users

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://*/"
  ]
}