Inspect and view changes in Cloud Pegboard AWS Console Enhancer 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
{
"name": "Cloud Pegboard AWS Console Enhancer",
"short_name": "CloudPegboard",
"version": "0.0.1.35",
"description": "Supercharge your AWS console",
"permissions": [
"tabs",
"storage",
"contextMenus"
],
"background": {
"scripts": [
"libs/node_modules/webextension-polyfill/dist/browser-polyfill.js",
"libs/jquery-3.4.1.min.js",
"contextmenus.js",
"background.js"
],
"persistent": true
},
"page_action": {
"default_title": "Cloud Pegboard AWS Console Enhancer",
"default_popup": "popup.html",
"default_icon": {
"19": "images/cloudpegboard-logo-202003-whiteinner19x19.png",
"38": "images/cloudpegboard-logo-202003-whiteinner38x38.png"
},
"browser_style": true
},
"icons": {
"16": "images/cloudpegboard-logo-202003-whiteinner16x16.png",
"32": "images/cloudpegboard-logo-202003-whiteinner32x32.png",
"48": "images/cloudpegboard-logo-202003-whiteinner48x48.png",
"128": "images/cloudpegboard-logo-202003-whiteinner128x128.png"
},
"options_ui": {
"page": "options.html",
"browser_style": true
},
"content_scripts": [
{
"matches": [
"https://*.console.aws.amazon.com/*"
],
"run_at": "document_idle",
"css": [
"pegboard.css"
],
"js": [
"libs/node_modules/webextension-polyfill/dist/browser-polyfill.js",
"mezzdata.js",
"abbreviations.js",
"contentScript.js"
]
},
{
"matches": [
"https://*.cloudpegboard.com/*"
],
"run_at": "document_start",
"js": [
"libs/node_modules/webextension-polyfill/dist/browser-polyfill.js",
"cloudpegboard.js"
]
}
],
"incognito": "spanning",
"manifest_version": 2,
"browser_specific_settings": {
"gecko": {
"id": "awsconsoleenhancer@cloudpegboard.com"
}
}
}