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
Eメール [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'"
}