Similar Sites - Discover Related Websites

Similar Sites - Discover Related Websites

Instantly find websites similar to the one you’re currently browsing. Explore the web, discover more.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_appName__",
  "version": "7.3.7",
  "manifest_version": 3,
  "description": "__MSG_appDesc__",
  "default_locale": "en",
  "content_security_policy": {
    "extension_page": "script-src 'self' https://www.google-analytics.com; object-src 'self'"
  },
  "icons": {
    "16": "images/icons/ss-addon-icon-16.png",
    "32": "images/icons/icon-32x32.png",
    "48": "images/icons/icon-48x48.png",
    "128": "images/icons/icon-128x128.png"
  },
  "permissions": [
    "tabs",
    "webRequest",
    "webNavigation",
    "storage",
    "scripting",
    "contextMenus"
  ],
  "host_permissions": [
    "*://*/*"
  ],
  "action": {
    "default_icon": {
      "16": "images/icons/ss-addon-icon-16.png"
    },
    "default_title": "SimilarSites"
  },
  "minimum_chrome_version": "93",
  "background": {
    "service_worker": "./service_worker.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content/content.js"
      ],
      "css": [
        "content/content.css"
      ],
      "run_at": "document_end"
    },
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "frame/frame.js"
      ],
      "run_at": "document_start",
      "all_frames": true,
      "match_about_blank": true
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "images/*.svg",
        "images/*.jpg",
        "images/*.png",
        "images/flags/*.svg",
        "images/icons/*.png",
        "images/onboarding/*.svg",
        "fonts/*.ttf",
        "panel/panel.html"
      ],
      "matches": [
        "<all_urls>"
      ],
      "extension_ids": []
    },
    {
      "resources": [
        "serp_overlay/serp_overlay.html"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}