AWS Favorites To Pins
Pick up AWS services from favorites list and make them into pins on the header as they should be!
AWS Favorites To Pinsคืออะไร?
AWS Favorites To Pins เป็นส่วนขยายของ Chrome ที่พัฒนาโดย aravindparappil และคุณลักษณะหลักของมันคือ "Pick up AWS services from favorites list and make them into pins on the header as they should be!"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย AWS Favorites To Pins
ดาวน์โหลดไฟล์ส่วนขยาย AWS Favorites To Pins ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
For your AWS Console, create pins for favorite services on the navigation header and save a few clicks! Pins are created based on the services you have favorited. You can decide how many pins to show on the navigation header & how they should appear - as just icons, just labels or both icon & label! This project is open-source. Please feel free to take a look at the code and contribute to make it better! https://github.com/aravindparappil46/aws-favs-to-pins If you found this extension useful, please leave a review & spread the joy! Release Notes v1.1 - Feature | Users can now select required number of pins & how they want the pins to appear (as only icons, only labels or both icon & label) v1.0 - Bug fix | Pins were not displayed occasionally
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | AWS Favorites To Pins |
ID | ncldghmgebieadpbefcmhicjepidmnhc |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/aws-favorites-to-pins/ncldghmgebieadpbefcmhicjepidmnhc |
คำอธิบาย | Pick up AWS services from favorites list and make them into pins on the header as they should be! |
ขนาดไฟล์ | 22.4 KB |
จำนวนการติดตั้ง | 88 |
เวอร์ชันปัจจุบัน | 1.1.0 |
อัปเดตครั้งล่าสุด | 2020-10-06 |
วันที่เผยแพร่ | 2020-09-23 |
คะแนน | 5.00/5 รวมทั้งหมด 9 คะแนน |
ผู้พัฒนา | aravindparappil |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/aravindparappil46/aws-favs-to-pins |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "AWS Favorites To Pins", "version": "1.1.0", "description": "Pick up AWS services from favorites list and make them into pins on the header as they should be!", "manifest_version": 2, "options_ui": { "page": "options\/options.html", "open_in_tab": false }, "permissions": [ "storage" ], "content_scripts": [ { "matches": [ "https:\/\/*.console.aws.amazon.com\/*", "https:\/\/phd.aws.amazon.com\/*", "https:\/\/*.console.amazonaws-us-gov.com\/*", "https:\/\/*.console.amazonaws.cn\/*" ], "css": [ "styles.css" ], "js": [ "aws-pins.js" ] } ], "icons": { "128": "logo.png" } } |