Blind Twitter

Keeps tweet authors hidden until you like or retweet them.

Что такое Blind Twitter?

Blind Twitter - это расширение Chrome, разработанное Avneesh Kohli, и его основная функция - "Keeps tweet authors hidden until you like or retweet them.".

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

screenshot
screenshot
screenshot

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

Скачайте файлы расширений Blind Twitter в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        Twitter is an incredible platform, but it is also one where the diffusion of ideas is biased towards those with influence. 

Blind Twitter aims to solve this problem. By keeping tweet authors and Like/Retweet counts hidden, you get to decide free of outside signal the quality of a tweet. Once you engage with a tweet by liking, retweeting, replying to it, we'll reveal who wrote it and where it's from.

We think this will genuinely change how you interact with your Twitter feed.                    

Основная информация о расширении

Название Blind Twitter Blind Twitter
ID ahnfpebnkocjfnljkeibilgochlohpge
Официальный URL https://chrome.google.com/webstore/detail/ahnfpebnkocjfnljkeibilgochlohpge
Описание Keeps tweet authors hidden until you like or retweet them.
Размер файла 50.97 KB
Количество установок 46
Текущая Версия 1.2.3
Последнее Обновление 2016-02-08
Дата публикации 2016-02-08
Рейтинг 3.20/5 Всего 5 оценок
Разработчик Avneesh Kohli
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Blind Twitter",
    "description": "Keeps tweet authors hidden until you like or retweet them.",
    "version": "1.2.3",
    "browser_action": {
        "default_icon": "logo.png",
        "default_title": "Reveal Tweets"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "icons": {
        "48": "logo.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.twitter.com\/*"
            ],
            "js": [
                "jquery-2.1.4.min.js",
                "script.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "images\/avatar.png",
        "images\/logo.png"
    ],
    "permissions": [
        "activeTab",
        "tabs",
        "storage",
        "webRequest",
        "*:\/\/*.twitter.com\/*",
        "*:\/\/*.google-analytics.com\/*"
    ],
    "content_security_policy": "script-src 'self' https:\/\/www.google-analytics.com; object-src 'self'"
}