Examine source code of Rango

Inspect and view changes in Rango 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": "Rango",
  "version": "0.8.2",
  "description": "Extension that allows you to interact with webpages and the browser using your voice and talon or your keyboard",
  "homepage_url": "https://github.com/david-tejada/rango",
  "manifest_version": 2,
  "browser_specific_settings": {
    "gecko": {
      "id": "rango@david-tejada",
      "strict_min_version": "80.0"
    }
  },
  "icons": {
    "48": "icon48.5ce4479c.png",
    "128": "icon128.988d9868.png"
  },
  "permissions": [
    "storage",
    "tabs",
    "activeTab",
    "clipboardRead",
    "clipboardWrite",
    "notifications",
    "webNavigation",
    "contextMenus",
    "bookmarks"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.afd01301.js"
      ],
      "css": [
        "tippy.3c5b5f04.css"
      ],
      "all_frames": true,
      "match_about_blank": true,
      "run_at": "document_idle"
    }
  ],
  "options_ui": {
    "page": "settings.26b2ae0d.html",
    "open_in_tab": true
  },
  "background": {
    "persistent": false,
    "scripts": [
      "background.ed596881.js"
    ]
  },
  "commands": {
    "get-talon-request": {
      "suggested_key": {
        "default": "Ctrl+Shift+Insert",
        "mac": "MacCtrl+Shift+Insert"
      },
      "description": "Get the talon request"
    },
    "get-talon-request-alternative": {
      "suggested_key": {
        "default": "Ctrl+Shift+3",
        "mac": "MacCtrl+Shift+3"
      },
      "description": "Get the talon request (alternative)"
    },
    "toggle-hints": {
      "suggested_key": {
        "default": "Ctrl+Shift+Space",
        "mac": "MacCtrl+Shift+Space"
      },
      "description": "Toggle hints"
    },
    "disable-hints": {
      "suggested_key": {
        "default": "Ctrl+Shift+4",
        "mac": "MacCtrl+Shift+4"
      },
      "description": "Disable hints"
    },
    "enable-hints": {
      "suggested_key": {
        "default": "Ctrl+Shift+6",
        "mac": "MacCtrl+Shift+6"
      },
      "description": "Enable hints"
    },
    "toggle-keyboard-clicking": {
      "suggested_key": {
        "default": "Ctrl+Shift+5",
        "mac": "MacCtrl+Shift+5"
      },
      "description": "Toggle keyboard clicking"
    }
  },
  "browser_action": {
    "default_icon": "icon48.5ce4479c.png",
    "default_title": "Rango"
  },
  "web_accessible_resources": [
    "clipboardWriteInterceptor.2798e008.js"
  ]
}