Cloud Pegboard AWS Console Enhancer

Cloud Pegboard AWS Console Enhancer

Supercharge your AWS console by defining selectable sets of shortcuts for the AWS console and instant access to service data sheets. Other enhancements include a visible display of the environment type, and improvements to the regions menu.

Merlin
Additional files are visible only to premium users

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": "[email protected]"
    }
  }
}