Remove View Count from Twitter

Remove View Count from Twitter

Browser extension to remove the view count from tweetsBrowser extension to remove the view count from tweets

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "Remove Twitter View Count",
  "version": "1.0.1",
  "description": "Browser extension to remove the view count from tweets",
  "permissions": [],
  "content_scripts": [
    {
      "matches": [
        "https://twitter.com/*"
      ],
      "js": [
        "main.js"
      ]
    }
  ],
  "page_action": {
    "default_icon": {
      "16": "img/icon16.png",
      "32": "img/icon32.png",
      "48": "img/icon48.png",
      "128": "img/icon128.png"
    }
  },
  "icons": {
    "16": "img/icon16.png",
    "32": "img/icon32.png",
    "48": "img/icon48.png",
    "128": "img/icon128.png"
  },
  "manifest_version": 2,
  "browser_specific_settings": {
    "gecko": {
      "id": "{2de3ed8c-e029-413b-8a34-385d0978d649}"
    }
  }
}