Make Twitter Great Again

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

Make Twitter Great Again क्या है?

Make Twitter Great Again adilnaut द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Block tweets about U.S. 2016 election in your feed"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Make Twitter Great Again एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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.                    

एक्सटेंशन की मूल जानकारी

नाम Make Twitter Great Again Make Twitter Great Again
ID beifniogjbogfikkdkblpemliilcjnhf
आधिकारिक URL https://chromewebstore.google.com/detail/make-twitter-great-again/beifniogjbogfikkdkblpemliilcjnhf
विवरण Block tweets about U.S. 2016 election in your feed
फ़ाइल का आकार 41.49 KB
स्थापना संख्या 47
वर्तमान संस्करण 1.0.2
अंतिम अपडेट 2016-10-09
प्रकाशन तिथि 2016-10-09
रेटिंग 4.33/5 कुल 6 रेटिंग्स
डेवलपर adilnaut
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट http://maketwittergreatagain.weebly.com
समर्थित भाषाएँ 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'"
}