Nest Networking

Nest Networking

Speed up the client research process by displaying valuable website insights with a single click.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Nest Networking",
  "version": "1.4",
  "description": "Speed up the client research process by displaying valuable website insights with a single click.",
  "icons": {
    "16": "media/logo16.png",
    "48": "media/logo48.png",
    "128": "media/logo128.png"
  },
  "browser_action": {
    "default_icon": "media/logo16.png",
    "default_popup": "popup/popup.html"
  },
  "background": {
    "scripts": [
      "event-page.js"
    ],
    "persistent": true
  },
  "content_security_policy": "script-src 'self' https://ssl.google-analytics.com; object-src 'self'",
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "./jquery.js",
        "./content/advertising.js",
        "./content/copyright-year.js",
        "./content/emails.js",
        "./content/google-maps.js",
        "./content/links.js",
        "./content/mobile-friendly.js",
        "./content/pages.js",
        "./content/platforms.js",
        "./content/social-media.js",
        "./content/embed-video.js",
        "./content/address.js",
        "./content/phone.js",
        "./content/chat-plugins.js",
        "./content/seo-schema.js",
        "./content/content.js"
      ],
      "run_at": "document_end"
    }
  ],
  "permissions": [
    "webRequest",
    "<all_urls>",
    "notifications",
    "storage"
  ]
}