Sims 4 MM addon

Sims 4 MM addon

Allow downloads to go through the app.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Sims 4 MM addon",
  "version": "1.1",
  "description": "Allow downloads to go through the app.",
  "content_scripts": [
    {
      "matches": [
        "*://www.loverslab.com/files/file/*",
        "*://modthesims.info/d/*/*.html"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "icons": {
    "48": "icons/icon48.png",
    "256": "icons/icon256.png"
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "[email protected]"
    }
  },
  "browser_action": {
    "default_icon": {
      "256": "icons/icon256.png"
    },
    "default_title": "Bookmarks",
    "default_popup": "/popup/popup.html"
  }
}