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 aravindparappil द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Pick up AWS services from favorites list and make them into pins on the header as they should be!"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में AWS Favorites To Pins एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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" } } |