Real AWS Status
Make the aws status page a bit more useful during outages
Vad är Real AWS Status?
Real AWS Status är en Chrome-tillägg utvecklad av jacksongeller, och dess huvudfunktion är "Make the aws status page a bit more useful during outages".
Tilläggsskärmbilder
Ladda ner Real AWS Status-förlängningens CRX-fil
Ladda ner Real AWS Status-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
Grundläggande Information om Tillägg
| Namn | |
| ID | kaegondhonfdclembpcgaaammmlfaekj |
| Officiell webbadress | https://chromewebstore.google.com/detail/real-aws-status/kaegondhonfdclembpcgaaammmlfaekj |
| Beskrivning | Make the aws status page a bit more useful during outages |
| Filstorlek | 364 KB |
| Antal Installationer | 393 |
| Aktuell Version | 0.0.4 |
| Senast Uppdaterad | 2017-02-28 |
| Publiceringsdatum | 2017-02-28 |
| Betyg | 5.00/5 Totalt 8 Betyg |
| Utvecklare | jacksongeller |
| Betalningssätt | free |
| Tilläggswebbplats | https://github.com/josegonzalez/real-aws-status |
| Hjälpsida URL | https://github.com/josegonzalez/real-aws-status/issues |
| Stödda Språk | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Real AWS Status",
"version": "0.0.4",
"manifest_version": 2,
"description": "Make the aws status page a bit more useful during outages",
"homepage_url": "https:\/\/github.com\/josegonzalez\/real-aws-status",
"icons": {
"16": "icons\/icon16.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
},
"default_locale": "en",
"background": {
"scripts": [
"src\/bg\/background.js"
],
"persistent": false
},
"permissions": [
"http:\/\/status.aws.amazon.com\/*",
"https:\/\/status.aws.amazon.com\/*"
],
"content_scripts": [
{
"matches": [
"http:\/\/status.aws.amazon.com\/*",
"https:\/\/status.aws.amazon.com\/*"
],
"js": [
"src\/inject\/inject.js"
]
}
]
} | |