SEO Inspector

SEO Inspector

This extension allows to easily inspect important SEO data for each website by just using the chrome developer panel

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 Inspector",
  "description": "This extension allows to easily inspect important SEO data for each website by just using the chrome developer panel",
  "version": "1.0.2",
  "devtools_page": "devtools.html",
  "options_page": "Panel/AppTesterPanel.html",
  "background": {
    "persistent": false,
    "page": "background.html"
  },
  "icons": {
    "16": "icon/[email protected]",
    "48": "icon/[email protected]",
    "128": "icon/[email protected]"
  },
  "browser_action": {
    "default_icon": "icon/[email protected]",
    "default_popup": "popup.html"
  },
  "permissions": [
    "activeTab",
    "*://*/*",
    "storage"
  ],
  "sandbox": {
    "pages": [
      "sandboxed.html"
    ]
  }
}