BigView for BigQuery

Get a bigger view on the BigQuery console

BigView for BigQueryคืออะไร?

BigView for BigQuery เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Christian Soujon และคุณลักษณะหลักของมันคือ "Get a bigger view on the BigQuery console"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย BigView for BigQuery

ดาวน์โหลดไฟล์ส่วนขยาย BigView for BigQuery ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Turn the Google Cloud BigQuery Console into a more focused development tool by toggling the query editor fullscreen and changing the syntax theme.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ BigView for BigQuery BigView for BigQuery
ID mlnfpghecigkjfogppmleacmcklapafh
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/bigview-for-bigquery/mlnfpghecigkjfogppmleacmcklapafh
คำอธิบาย Get a bigger view on the BigQuery console
ขนาดไฟล์ 10.76 KB
จำนวนการติดตั้ง 58
เวอร์ชันปัจจุบัน 1.3
อัปเดตครั้งล่าสุด 2020-04-14
วันที่เผยแพร่ 2020-04-13
คะแนน 5.00/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา Christian Soujon
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "BigView for BigQuery",
    "version": "1.3",
    "description": "Get a bigger view on the BigQuery console",
    "manifest_version": 2,
    "permissions": [
        "declarativeContent",
        "storage",
        "webNavigation"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/console.cloud.google.com\/bigquery*"
            ],
            "js": [
                "content\/button.js",
                "content\/select.js",
                "content\/index.js"
            ],
            "css": [
                "content\/style.css"
            ]
        }
    ],
    "page_action": {
        "default_icon": {
            "16": "images\/icon16.png",
            "32": "images\/icon32.png",
            "48": "images\/icon48.png",
            "128": "images\/icon128.png"
        },
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "images\/icon16.png",
        "32": "images\/icon32.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    }
}