Extension Inspector

Extension Inspector

Inspect Firefox and Chrome extensions with https://tim-we.github.io/web-ext-inspector

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Extension Inspector",
  "version": "1.2.0",
  "description": "Inspect Firefox and chrome extensions with web-ext-inspector.",
  "author": "Tim Weißenfels",
  "permissions": [
    "activeTab"
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "icons": {
    "48": "logo/48.png",
    "96": "logo/96.png"
  },
  "page_action": {
    "default_title": "Inspect Extension",
    "show_matches": [
      "https://addons.mozilla.org/*/firefox/addon/*",
      "https://chrome.google.com/webstore/detail/*/*"
    ],
    "default_icon": {
      "19": "logo/19.png",
      "38": "logo/38.png"
    }
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "{933621d2-a65b-4079-89cb-e95ddd949e87}"
    }
  }
}