SEO Wizard

SEO Wizard

SEO Wizard is a FREE SEO extension which displays all onpage and offpage SEO information to help you make your website better.

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 Wizard",
  "description": "SEO Wizard is a FREE SEO extension which displays all onpage and offpage SEO information to help you make your website better.",
  "version": "1.6",
  "background": {
    "persistent": true,
    "scripts": [
      "background.js",
      "count.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "jquery-1.11.3.js",
        "content.js",
        "js/toastr.min.js"
      ],
      "css": [
        "css/toastr.min.css"
      ]
    }
  ],
  "icons": {
    "16": "img/icon16.png",
    "48": "img/icon48.png",
    "128": "img/icon128.png"
  },
  "browser_action": {
    "default_title": "SEO Wizard",
    "default_icon": "img/icon128.png",
    "default_popup": "popup.html"
  },
  "permissions": [
    "contextMenus",
    "tabs",
    "activeTab",
    "storage",
    "http://*/*"
  ]
}