Inspect and view changes in AWS Favorites To Pins source codes across current and past versions
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
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"
}
}