Make Twitter Great Again

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

什么是Make Twitter Great Again?

Make Twitter Great Again是由adilnaut开发的Chrome扩展程序,该扩展的主要功能是“Block tweets about U.S. 2016 election in your feed”。

扩展截图

screenshot
screenshot
screenshot
screenshot
screenshot

下载Make Twitter Great Again扩展crx文件

下载Make Twitter Great Again扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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'"
}