MyAlgorithm

MyAlgorithm

A personal recommendation feed built in your browser. With myAlgorithm, you get daily content from Youtube/Twitter/Reddit/Quora/and more based on your daily browsing habits.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "MyAlgorithm",
  "description": "Your personal recommendation feed - be in control of your algorithm",
  "version": "0.5.0",
  "manifest_version": 2,
  "background": {
    "scripts": [
      "dist/background.bundle.js"
    ],
    "persistent": true
  },
  "content_scripts": [
    {
      "matches": [
        "https://*/*"
      ],
      "js": [
        "dist/content.bundle.js"
      ]
    }
  ],
  "permissions": [
    "webRequest",
    "storage",
    "<all_urls>"
  ],
  "browser_action": {
    "default_icon": {
      "32": "popup_assets/icon_32.png"
    },
    "default_title": "Click Me",
    "default_popup": "popup.html"
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "{9b3d4ba6-8d75-4448-8058-a641e22866a3}"
    }
  }
}