remove-twitter-trends

remove-twitter-trends

Switches Twitter trending topics off

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "remove-twitter-trends",
  "description": "Switches Twitter trending topics off",
  "version": "1.0.1",
  "icons": {
    "64": "icons/icon512.png"
  },
  "background": {
    "scripts": [
      "browser-polyfill.js",
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.twitter.com/*"
      ],
      "css": [
        "style.css"
      ],
      "js": [
        "browser-polyfill.js",
        "mithril.js",
        "content_script.js"
      ],
      "run_at": "document_end"
    }
  ],
  "options_ui": {
    "page": "options/index.html"
  },
  "permissions": [
    "webNavigation",
    "storage"
  ]
}