#remover

#remover

Removes hashtags from Twitter and Facebook

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "#remover",
  "version": "1.0.2",
  "description": "Removes hashtags from Twitter and Facebook",
  "author": "Nick Penney",
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.facebook.com/*",
        "*://twitter.com/*"
      ],
      "js": [
        "/js/jquery.js",
        "/js/replacetext.js",
        "/js/remover.js"
      ],
      "run_at": "document_start",
      "all_frames": true
    }
  ]
}