FandangoSEO Extension

FandangoSEO Extension

FandangoSEO SEO Extension to do a small Page audit

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "FandangoSEO Extension",
  "description": "FandangoSEO SEO Extension to do a small Page audit",
  "version": "1.0.1",
  "icons": {
    "16": "icon_16.png",
    "32": "icon_32.png",
    "48": "icon_48.png",
    "128": "icon_128.png"
  },
  "background": {
    "persistent": true,
    "scripts": [
      "js/background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/jquery-3.4.1.slim.min.js",
        "js/gen.js",
        "js/bootstrap.bundle.min.js"
      ]
    }
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
  "browser_action": {
    "default_icon": "icon.png",
    "default_popup": "index.html"
  },
  "permissions": [
    "contentSettings",
    "contextMenus",
    "tabs",
    "activeTab",
    "background",
    "webRequest",
    "<all_urls>"
  ]
}