@mute for TweetDeck

@mute for TweetDeck

Mute the specified user tweets, retweets, the DM. This extension reproduce the user mute function of TweetDeck.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "@mute for TweetDeck",
  "description": "__MSG_locale_description__",
  "default_locale": "en",
  "version": "0.3.1",
  "icons": {
    "16": "img/icon16.png",
    "48": "img/icon48.png",
    "128": "img/icon128.png"
  },
  "permissions": [
    "storage",
    "activeTab",
    "https://tweetdeck.twitter.com/"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://tweetdeck.twitter.com/*"
      ],
      "js": [
        "js/jquery-1.8.3.min.js",
        "js/content_scripts.js"
      ],
      "run_at": "document_idle"
    }
  ],
  "browser_action": {
    "default_popup": "popup.html"
  }
}