BigQuery Easy
BigQuery but better 🚀
什么是BigQuery Easy?
BigQuery Easy是由backend开发的Chrome扩展程序,该扩展的主要功能是“BigQuery but better 🚀”。
扩展截图
下载BigQuery Easy扩展crx文件
下载BigQuery Easy扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
The price of a query is displayed before execution if it is above $0.05. To reduce costs, easily query the temporary table. 扩展基本信息
| 名称 | |
| ID | celfclgjkbhkankkndefbmfphedkdidj |
| 官方URL | https://chromewebstore.google.com/detail/bigquery-easy/celfclgjkbhkankkndefbmfphedkdidj |
| 简介 | BigQuery but better 🚀 |
| 文件大小 | 92.81 KB |
| 安装次数 | 1,092 |
| 当前版本 | 4.1.0 |
| 更新时间 | 2022-08-08 |
| 上架时间 | 2020-03-25 |
| 评分 | 3.60/5 共5次评分 |
| 开发者 | backend |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://github.com/Pictarine/chrome-bigqeasy |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "BigQuery Easy",
"version": "4.1.0",
"description": "BigQuery but better \ud83d\ude80",
"icons": {
"16": "images\/icon_16.png",
"48": "images\/icon_48.png",
"128": "images\/icon_128.png"
},
"content_scripts": [
{
"js": [
"scripts\/jquery_3_3_1.js",
"scripts\/utils.js",
"scripts\/popup.js",
"scripts\/inject.js"
],
"css": [
"css\/main.css"
],
"matches": [
"https:\/\/console.cloud.google.com\/*"
]
}
],
"web_accessible_resources": [
{
"resources": [
"scripts\/jquery_3_3_1.js",
"scripts\/utils.js",
"scripts\/inject.js"
],
"matches": [
"https:\/\/console.cloud.google.com\/*"
]
}
],
"author": "Anthony Fernandez - marshallino16",
"background": {
"service_worker": "scripts\/background.js"
},
"permissions": [
"webRequest",
"background"
],
"host_permissions": [
"https:\/\/console.cloud.google.com\/*",
"https:\/\/clients6.google.com\/*"
]
} | |