aws-helper
this extension will set the tab icon according to the page you are currently viewing. it will also make it possible to open ELB…
aws-helperคืออะไร?
aws-helper เป็นส่วนขยายของ Chrome ที่พัฒนาโดย rotagi37 และคุณลักษณะหลักของมันคือ "this extension will set the tab icon according to the page you are currently viewing. it will also make it possible to open ELB…"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย aws-helper
ดาวน์โหลดไฟล์ส่วนขยาย aws-helper ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
this extension will set the tab icon according to the page you are currently viewing. it will also make it possible to open ELB form the route53 DNS list also from couldfront you will be able to double click on s3 and it will open in a new tab the icon will give you a fast access to your recent aws console pages + easy way to find the rest
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | aws-helper |
ID | cokfoodjbmkjmpabapnpldjfappcdgne |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/aws-helper/cokfoodjbmkjmpabapnpldjfappcdgne |
คำอธิบาย | this extension will set the tab icon according to the page you are currently viewing. it will also make it possible to open ELB… |
ขนาดไฟล์ | 1.4 MB |
จำนวนการติดตั้ง | 26 |
เวอร์ชันปัจจุบัน | 1.0.2.7 |
อัปเดตครั้งล่าสุด | 2020-07-03 |
วันที่เผยแพร่ | 2020-07-02 |
คะแนน | 5.00/5 รวมทั้งหมด 1 คะแนน |
ผู้พัฒนา | rotagi37 |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "background": { "scripts": [ "\/bg.js" ] }, "browser_action": { "default_icon": { "16": "icon.png", "32": "icon.png", "48": "icon.png" }, "default_popup": "popup.html", "default_title": "AWS Helper" }, "content_scripts": [ { "all_frames": true, "js": [ "jquery-3.2.1.min.js", "icons.js", "cscript.js" ], "matches": [ "https:\/\/*.aws.amazon.com\/*" ], "run_at": "document_end" } ], "devtools_page": "devtools.html", "icons": { "16": "icon.png", "32": "icon.png", "48": "icon.png" }, "manifest_version": 2, "name": "aws-helper", "options_page": "options.html", "permissions": [ "tabs", "https:\/\/*.aws.amazon.com\/*" ], "version": "1.0.2.7" } |