Make Twitter Great Again

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

Что такое Make Twitter Great Again?

Make Twitter Great Again - это расширение Chrome, разработанное adilnaut, и его основная функция - "Block tweets about U.S. 2016 election in your feed".

Снимки экрана расширения

screenshot
screenshot
screenshot
screenshot
screenshot

Скачать файл CRX расширения Make Twitter Great Again

Скачайте файлы расширений 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'"
}