Mention It

Mention It

Replace Twitter's Moments tab with a Mentions tab

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Mention It",
  "description": "Replace Twitter's Moments tab with a Mentions tab",
  "version": "1.0",
  "short_name": "Remove the Archive button from Yahoo Mail, and put the Delete button back where it used to be.",
  "icons": {
    "16": "mentionIt16.png",
    "48": "mentionIt48.png",
    "128": "mentionIt128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.twitter.com/*"
      ],
      "js": [
        "mentionIt.js"
      ],
      "run_at": "document_end"
    }
  ]
}