Unpepefy - Making Twitter Great Again

Unpepefy - Making Twitter Great Again

Browser extension to remove deplorable Pepes and other neonazi imagery from your Twitter timeline, now with Naziscore support.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Unpepefy - Making Twitter Great Again",
  "description": "Browser extension to remove deplorable Pepes and other neonazi imagery from your Twitter timeline, now with Naziscore support.",
  "version": "2.0.4",
  "permissions": [
    "tabs",
    "https://twitter.com/*",
    "https://mobile.twitter.com/*",
    "https://tweetdeck.twitter.com/*",
    "https://naziscore.appspot.com/v1/screen_name/*/score.json"
  ],
  "icons": {
    "32": "icon32.png",
    "48": "icon48.png",
    "64": "icon64.png",
    "128": "icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://twitter.com/*",
        "https://mobile.twitter.com/*",
        "https://tweetdeck.twitter.com/*"
      ],
      "css": [
        "unpepefy.css"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_end"
    }
  ],
  "web_accessible_resources": [
    "unpepe.png"
  ]
}