ModLinker

ModLinker

Avoids CurseForge links, replacing them with Modrinth links in Google search results.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "ModLinker",
  "version": "1.2.3",
  "description": "Avoids CurseForge links, replacing them with Modrinth links in Google search results.",
  "icons": {
    "16": "assets/ext-icon_16.png",
    "32": "assets/ext-icon_32.png",
    "48": "assets/ext-icon_48.png",
    "128": "assets/ext-icon_128.png"
  },
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "action": {
    "default_title": "ModLinker",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.google.com/search*"
      ],
      "js": [
        "contentScript.js"
      ]
    }
  ]
}