Examine source code of Roboquery - Convert code to Google Bigquery

Inspect and view changes in Roboquery - Convert code to Google Bigquery 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
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Roboquery - Convert code to Google Bigquery",
  "description": "Migrate your SQL queries, tables, views from Teradata to Google Bigquery",
  "version": "1.0.3",
  "icons": {
    "16": "icons/icon16.png",
    "32": "icons/icon32.png",
    "66": "icons/icon66.png"
  },
  "browser_action": {
    "default_icon": "icons/icon16.png",
    "default_popup": "html/popup.html"
  },
  "permissions": [
    "contextMenus",
    "cookies",
    "https://*.roboquery.com/"
  ],
  "background": {
    "scripts": [
      "js/background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "*://console.cloud.google.com/bigquery*"
      ],
      "js": [
        "js/content.js"
      ]
    }
  ]
}