Meta Explorer

Meta Explorer

Find out SEO Meta of any website you browse.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Meta Explorer",
  "description": "Find out SEO Meta of any website you browse.",
  "version": "2.6.8",
  "manifest_version": 3,
  "host_permissions": [
    "https://*/*",
    "http://*/*"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "index.html",
        "root.css",
        "logo.png",
        "fonts/Inter/web/*.woff2"
      ],
      "matches": [
        "https://*/*",
        "http://*/*"
      ]
    }
  ],
  "action": {
    "default_title": "Meta Explorer: Check SEO meta tags of any site you browse."
  },
  "content_scripts": [
    {
      "matches": [
        "https://*/*",
        "http://*/*"
      ],
      "js": [
        "jquery-3.6.0.js",
        "content-script.js",
        "root.js"
      ],
      "css": [
        "common.css",
        "fonts/Inter/web/inter.css"
      ],
      "run_at": "document_end"
    }
  ],
  "permissions": [
    "tabs",
    "storage",
    "scripting"
  ],
  "icons": {
    "16": "images/meta_16.png",
    "32": "images/meta_32.png",
    "48": "images/meta_48.png",
    "128": "images/meta_128.png"
  },
  "commands": {
    "_execute_action": {
      "suggested_key": {
        "default": "Ctrl+Shift+E",
        "mac": "Command+Shift+E"
      }
    }
  }
}