SEO-HTML

SEO-HTML

This extension is to inspect the HTML source of a website and to display SEO relevant information.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "SEO-HTML",
  "description": "This extension is to inspect the HTML source of a website and to display SEO relevant information.",
  "short_name": "SEO-HTML",
  "version": "0.3.2",
  "author": "Daniel Lucks",
  "permissions": [
    "tabs"
  ],
  "content_security_policy": "script-src 'self' https://ssl.google-analytics.com; object-src 'self'",
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "browser_action": {
    "default_icon": "images/icon-24.png",
    "default_popup": "popup/index.html"
  },
  "icons": {
    "16": "images/icon-16.png",
    "48": "images/icon-48.png",
    "128": "images/icon-128.png"
  }
}