MyAlgorithm

MyAlgorithm

Your personal recommendation feed - be in control of your algorithm

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "MyAlgorithm",
  "description": "Your personal recommendation feed - be in control of your algorithm",
  "version": "0.5.0",
  "manifest_version": 3,
  "background": {
    "service_worker": "background.js"
  },
  "host_permissions": [
    "<all_urls>"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://*/*"
      ],
      "js": [
        "dist/content.bundle.js"
      ]
    }
  ],
  "permissions": [
    "webRequest",
    "storage"
  ],
  "action": {
    "default_icon": {
      "32": "popup_assets/icon_32.png"
    },
    "default_title": "Click Me",
    "default_popup": "popup.html"
  }
}