Roboquery - Convert code to Snowflake

Migrate your SQL queries, tables, views from Teradata to Snowflake
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 Snowflake",
  "description": "Migrate your SQL queries, tables, views from Teradata to Snowflake",
  "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"
    ]
  },
  "web_accessible_resources": [
    "icons/*.png"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://*.snowflakecomputing.com/*"
      ],
      "js": [
        "js/content.js"
      ]
    }
  ]
}