Easy SEO

Easy SEO

This addon check some basic SEO feaures for the current page. If you need to validate several pages from a website this addon can help you to review all pages in less time. Check for headings, images,links and the snippet is the basic SEO.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Easy SEO",
  "version": "1.0",
  "description": "Analyze headings, images, links, title and metadescription. This extension look for any error from a SEO point of view.",
  "icons": {
    "48": "icon.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "css": [
        "style.css"
      ],
      "js": [
        "jquery-3.4.1.min.js",
        "content.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "browser_action": {
    "default_icon": "icon.png"
  }
}