SEO Audit Tool (by tinkerEdge)

SEO Audit Tool (by tinkerEdge)

One-click SEO Analysis Tool, made for Non-SEOs by SEOs

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "SEO Audit Tool (by tinkerEdge)",
  "version": "1.0.0",
  "manifest_version": 2,
  "description": "One-click SEO Analysis Tool, made for Non-SEOs by SEOs",
  "icons": {
    "128": "icon.png"
  },
  "browser_action": {
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "contentScript.js"
      ]
    },
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "LoadingSpeed.js"
      ],
      "run_at": "document_start"
    }
  ],
  "background": {
    "scripts": [
      "bg.js"
    ],
    "persistent": true
  },
  "content_security_policy": "script-src 'self' 'unsafe-eval' https://maps.google.com https://ajax.googleapis.com https://seo-analyser-f35fa.firebaseio.com https://s-usc1c-nss-273.firebaseio.com/; object-src 'self'",
  "permissions": [
    "activeTab"
  ]
}