Created
January 31, 2015 11:46
-
-
Save brpaz/129de649efe5ed17474d to your computer and use it in GitHub Desktop.
Sample shortcut chrome extension #aws #chrome
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"manifest_version": 2, | |
"name": "AWS Console", | |
"description": "Just a shortcut to AWS Management Console", | |
"version": "1.0", | |
"icons": { | |
"128": "icon-128.png" | |
}, | |
"app": { | |
"urls": [ | |
"https://console.aws.amazon.com" | |
], | |
"launch": { | |
"web_url": "https://console.aws.amazon.com" | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment