Twitter Page Cleaner

Twitter Page Cleaner

This extension hides your choice of trends, who to follow and footer dashboards from twitter pages.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "__MSG_extName__",
  "description": "__MSG_extDesc__",
  "version": "0.0.1",
  "browser_action": {
    "default_icon": {
      "19": "icon19.png",
      "38": "icon38.png"
    },
    "default_popup": "popup.html"
  },
  "icons": {
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "permissions": [
    "http://twitter.com/*",
    "https://twitter.com/*",
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://twitter.com/*",
        "https://twitter.com/*"
      ],
      "js": [
        "hide_script.js"
      ]
    }
  ],
  "default_locale": "en",
  "author": {
    "email": "[email protected]"
  },
  "homepage_url": "http://www.volkanbasar.com"
}