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開發的Chrome擴展程式,該擴展的主要功能是“Pick up AWS services from favorites list and make them into pins on the header as they should be!”。
擴展截圖
下載AWS Favorites To Pins擴展crx文件
下載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 |
官方網址 | 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" } } |