Where is My Website

Where is My Website

Highlight Your Website in Google Search and Keep an Eye on Competitors.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "name": "Where is My Website",
  "short_name": "Where is My Website",
  "version": "2.0.6",
  "author": "Sumit Kumar Yadav",
  "description": "Highlight Your Website in Google Search and Keep an Eye on Competitors.",
  "content_security_policy": {
    "extension_pages": "script-src 'self' ; object-src 'self'"
  },
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.google.com/search*",
        "https://www.google.co.uk/search*",
        "https://www.google.co.in/search*",
        "https://www.google.fr/search*",
        "https://www.google.de/search*",
        "https://www.google.com.sg/search*",
        "https://www.google.com.pk/search*",
        "https://www.google.com.ng/search*",
        "https://www.google.com.hk/search*",
        "https://www.google.com.au/search*",
        "https://www.google.co.nz/search*",
        "https://www.google.co.jp/search*",
        "https://www.google.ae/search*"
      ],
      "js": [
        "scripts/content.js"
      ],
      "css": [
        "css/searchStyles.css"
      ],
      "all_frames": true
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "css/searchStyles.css"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "permissions": [
    "storage"
  ],
  "options_page": "options.html",
  "action": {
    "default_popup": "popup.html",
    "default_title": "Add/Edit Websites to Know Where is Your Website",
    "default_icon": {
      "16": "icon16.png",
      "48": "icon48.png",
      "128": "icon128.png"
    }
  },
  "commands": {
    "_execute_action": {
      "suggested_key": {
        "default": "Ctrl+Shift+F",
        "mac": "MacCtrl+Shift+F"
      },
      "description": "Activate the extension"
    }
  },
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}