Make Twitter Great Again

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

Co je Make Twitter Great Again?

Make Twitter Great Again je rozšíření Chrome vyvinuté adilnaut, a jeho hlavní funkcí je „Block tweets about U.S. 2016 election in your feed“.

Snímky obrazovky rozšíření

screenshot
screenshot
screenshot
screenshot
screenshot

Stáhnout soubor CRX rozšíření Make Twitter Great Again

Stáhněte si soubory rozšíření Make Twitter Great Again ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název Make Twitter Great Again Make Twitter Great Again
ID beifniogjbogfikkdkblpemliilcjnhf
Oficiální URL https://chromewebstore.google.com/detail/make-twitter-great-again/beifniogjbogfikkdkblpemliilcjnhf
Popis Block tweets about U.S. 2016 election in your feed
Velikost souboru 41.49 KB
Počet instalací 47
Aktuální Verze 1.0.2
Poslední Aktualizace 2016-10-09
Datum Vydání 2016-10-09
Hodnocení 4.33/5 Celkem 6 Hodnocení
Vývojář adilnaut
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření http://maketwittergreatagain.weebly.com
Podporované Jazyky 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'"
}