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
官方網址 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'"
}