AutoWeb Inspector

AutoWeb Inspector

This extension is build to help identify Objects on a web page. You can easily identify an object's finder properties by just…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "AutoWeb Inspector",
  "short_name": "AWI",
  "version": "0.4.2",
  "author": "Initto IT Consulting Inc.",
  "default_locale": "en",
  "description": "",
  "icons": {
    "16": "img/logo16.png",
    "48": "img/logo48.png",
    "128": "img/logo128.png"
  },
  "background": {
    "scripts": [
      "dist/jquery.min.js",
      "dist/background.min.js",
      "dist/init.min.js"
    ]
  },
  "browser_action": {
    "default_icon": "img/icon_inactive.png",
    "name": "Click to activate or deactivate on current page."
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "css": [
        "dist/general.min.css"
      ],
      "js": [
        "dist/jquery.min.js",
        "dist/init.min.js"
      ]
    }
  ],
  "permissions": [
    "http://*/*",
    "https://*/*"
  ]
}