ToroBoost

ToroBoost

ToroBoost is the #1 Chrome extension to remove spam from your eToro news feed.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "ToroBoost",
  "version": "1.0.6",
  "description": "ToroBoost is the #1 Chrome extension to remove spam from your eToro news feed.",
  "permissions": [
    "declarativeContent"
  ],
  "background": {
    "scripts": [
      "js/background.js"
    ],
    "persistent": true
  },
  "icons": {
    "48": "images/icon-eToro-48-disabled.png",
    "128": "images/icon-eToro-128-disabled.png"
  },
  "page_action": {
    "default_icon": "images/icon-eToro-128.png",
    "default_title": "ToroBoost"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.etoro.com/*"
      ],
      "css": [
        "css/etoro.css"
      ],
      "js": [
        "js/jquery.min.js",
        "js/etoro.js"
      ],
      "all_frames": true,
      "run_at": "document_idle"
    }
  ],
  "manifest_version": 2
}