showHTML

showHTML

This extension shows information about HTML elements on a web page when you hover over them.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "showHTML",
  "description": "This extension shows information about HTML elements on a web page when you hover over them.",
  "version": "1.1.2",
  "short_name": "Show HTML tag names, IDs & classes for a web page",
  "homepage_url": "http://tech-in-check.blogspot.com/p/showhtml.html",
  "author": "freginold",
  "icons": {
    "16": "showHTML16.png",
    "48": "showHTML48.png",
    "128": "showHTML128.png"
  },
  "browser_action": {
    "default_icon": {
      "19": "showHTML19.png",
      "38": "showHTML38.png"
    },
    "default_title": "showHTML"
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "options_ui": {
    "page": "options.html",
    "chrome_style": true
  },
  "permissions": [
    "activeTab",
    "storage"
  ]
}