Make Twitter Great Again

Block tweets about U.S. 2016 election in your feed

What is Make Twitter Great Again?

Make Twitter Great Again is a Chrome extension developed by adilnaut, and its main feature is "Block tweets about U.S. 2016 election in your feed".

Extension Screenshots

screenshot
screenshot
screenshot
screenshot
screenshot

Download Make Twitter Great Again Extension CRX File

Download Make Twitter Great Again extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        Our extension hides tweets about U.S. 2016 elections from your twitter feed. It uses machine learning and artificial intelligence approach to block tweets, which means that it looks to the content of the tweets and does not biased towards specific users.
DISCLAIMER: as our extension uses machine learning algorithms, our predictions may not always be accurate. That is why you can always show tweets, that were hidden by it.                    

Extension Basic Information

Name Make Twitter Great Again Make Twitter Great Again
ID beifniogjbogfikkdkblpemliilcjnhf
Official URL https://chromewebstore.google.com/detail/make-twitter-great-again/beifniogjbogfikkdkblpemliilcjnhf
Description Block tweets about U.S. 2016 election in your feed
File Size 41.49 KB
Installation Count 47
Current Version 1.0.2
Last Updated 2016-10-09
Publish Date 2016-10-09
Rating 4.33/5 Total 6 Ratings
Developer adilnaut
Email [email protected]
Payment Type free
Extension Website http://maketwittergreatagain.weebly.com
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Make Twitter Great Again",
    "description": "Block tweets about U.S. 2016 election in your feed",
    "version": "1.0.2",
    "icons": {
        "128": "icon.png"
    },
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html",
        "default_title": "Switch blocking"
    },
    "permissions": [
        "activeTab",
        "storage",
        "tabs",
        ""
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/twitter.com\/*",
                "http:\/\/twitter.com\/*"
            ],
            "js": [
                "jquery.js",
                "initialize.js",
                "content.js",
                "popup.js"
            ]
        }
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}