Cloud project highlighter
Optionally change color to the cloud console project switcher.
ما هو Cloud project highlighter؟
Cloud project highlighter هو إضافة Chrome تم تطويرها بواسطة ludo، والميزة الرئيسية لها هي "Optionally change color to the cloud console project switcher.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Cloud project highlighter
قم بتنزيل ملفات الامتداد Cloud project highlighter بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Apply per-project colors to the Google Cloud console project switcher. Source code: https://github.com/ludoo/cloud-project-color NB: this is not an official Google product, and won't work on Google corp machines.
معلومات أساسية عن التمديد
الاسم | Cloud project highlighter |
ID | jminhahhcpbacjggeeighhkcabfbpmcb |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/cloud-project-highlighter/jminhahhcpbacjggeeighhkcabfbpmcb |
الوصف | Optionally change color to the cloud console project switcher. |
حجم الملف | 90.64 KB |
عدد التثبيتات | 24 |
النسخة الحالية | 0.0.1.3 |
آخر تحديث | 2018-06-15 |
تاريخ النشر | 2018-06-15 |
المطور | ludo |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
موقع الإضافة | https://github.com/ludoo/cloud-project-color |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Cloud project highlighter", "description": "Optionally change color to the cloud console project switcher.", "version": "0.0.1.3", "browser_action": { "default_popup": "popup.html" }, "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "*:\/\/console.cloud.google.com\/*" ], "js": [ "content.js" ], "run_at": "document_end" } ], "permissions": [ "storage", "*:\/\/console.cloud.google.com\/**" ], "icons": { "128": "icon-128.png" } } |