Web Inspector

Web Inspector

Have you ever wanted to know which is that stylish font used on a certain website? Or the text color used? Or have you ever wanted…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Web Inspector",
  "short_name": "WI",
  "version": "0.6.0",
  "author": "Bruno Sampaio",
  "default_locale": "en",
  "description": "",
  "icons": {
    "16": "img/logo16.png",
    "48": "img/logo48.png",
    "128": "img/logo128.png"
  },
  "background": {
    "scripts": [
      "dist/background.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://*/*"
  ]
}