Refined AWS Console
Simplifies the Amazon Web Services Console interface.
Cos'è Refined AWS Console?
Refined AWS Console è un'estensione di Chrome sviluppata da Akinjide Bankole, e la sua funzione principale è "Simplifies the Amazon Web Services Console interface.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Refined AWS Console
Scarica i file di estensione Refined AWS Console in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
- Pin More! Do More! (Quick navigation appears below header)
- Reduce navigation to services tab with shortcuts (Just press ?)
- Switch between AWS assigned roles
- Switch between AWS available regions
- Show custom navigation menus (Sign Out and more)
- Hide unused navigation menus
Learn more about Refined AWS Console at https://github.com/akinjide/refined-aws
CHANGELOG at https://github.com/akinjide/refined-aws/blob/master/CHANGELOG.md
- 2.6.1@latest: Publish FireFox addon on site Informazioni di Base sull'Estensione
| Nome | |
| ID | ockddcaogdonfmcfhdblbflchnjgiilc |
| URL Ufficiale | https://chromewebstore.google.com/detail/refined-aws-console/ockddcaogdonfmcfhdblbflchnjgiilc |
| Descrizione | Simplifies the Amazon Web Services Console interface. |
| Dimensione del File | 53.19 KB |
| Conteggio Installazioni | 98 |
| Versione Corrente | 2.6.1 |
| Ultimo Aggiornamento | 2020-12-02 |
| Data di Pubblicazione | 2020-02-03 |
| Sviluppatore | Akinjide Bankole |
| [email protected] | |
| Tipo di Pagamento | free |
| Sito Web dell'Estensione | https://github.com/akinjide/refined-aws |
| URL della Pagina di Aiuto | https://github.com/akinjide/refined-aws/issues |
| Lingue Supportate | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Refined AWS Console",
"version": "2.6.1",
"description": "Simplifies the Amazon Web Services Console interface.",
"homepage_url": "https:\/\/www.github.com\/akinjide\/refined-aws",
"manifest_version": 2,
"minimum_chrome_version": "62",
"permissions": [
"storage",
"alarms"
],
"icons": {
"16": "images\/icon16.png",
"32": "images\/icon32.png",
"48": "images\/icon48.png",
"128": "images\/icon128.png"
},
"background": {
"scripts": [
"browser-polyfill.min.js",
"main.js"
]
},
"options_ui": {
"chrome_style": true,
"page": "options.html"
},
"content_scripts": [
{
"run_at": "document_idle",
"matches": [
"https:\/\/console.aws.amazon.com\/*",
"https:\/\/*.console.aws.amazon.com\/*"
],
"css": [
"content.css"
],
"js": [
"jquery.slim.min.js",
"browser-polyfill.min.js",
"content.js"
]
}
]
} | |