Looker BigQuery

Looker BigQuery

The Looker BigQuery extension adds an icon to the BigQuery UI to let you explore a table from BigQuery in Looker with a single click

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Looker BigQuery",
  "version": "0.1.1",
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "https://bigquery.cloud.google.com/*"
      ],
      "js": [
        "defaults.js",
        "looker_bigquery.js"
      ],
      "css": [
        "looker_bigquery.css"
      ]
    }
  ],
  "description": "The Looker BigQuery extension adds an icon to the BigQuery UI to let you explore a table from BigQuery in Looker with a single click",
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "options_page": "options.html",
  "permissions": [
    "storage",
    "http://*/",
    "https://*/"
  ],
  "web_accessible_resources": [
    "icon128.png"
  ]
}