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".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة BigView for BigQuery
قم بتنزيل ملفات الامتداد BigView for BigQuery بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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 |
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 } } |