While you were away Remover

Hides that annoying 'While you were away...' section on Twitter, since repeatedly telling them to stop showing it doesn't work

Что такое While you were away Remover?

While you were away Remover - это расширение Chrome, разработанное Mark, и его основная функция - "Hides that annoying 'While you were away...' section on Twitter, since repeatedly telling them to stop showing it doesn't work".

Скачать файл CRX расширения While you were away Remover

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

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

                        Want to remove Twitter's new "While you were away" 'feature'? This extension does just that, and nothing else.

This simple extension, worth 2 lines of code, automatically hides the "While you were away" block from your Twitter feed, meaning you can start using Twitter again the way it was intended.

May add feature to remove the follower suggestions that pop up in the middle of the timeline as well if users want.                    

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

Название While you were away Remover While you were away Remover
ID kfhdopamocjnncalnifjpcbhkckbndlb
Официальный URL https://chromewebstore.google.com/detail/while-you-were-away-remov/kfhdopamocjnncalnifjpcbhkckbndlb
Описание Hides that annoying 'While you were away...' section on Twitter, since repeatedly telling them to stop showing it doesn't work
Размер файла 56.99 KB
Количество установок 65
Текущая Версия 0.1
Последнее Обновление 2016-02-03
Дата публикации 2016-02-02
Рейтинг 4.00/5 Всего 8 оценок
Разработчик Mark
Тип оплаты free
Поддерживаемые языки en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "While you were away Remover",
    "version": "0.1",
    "icons": {
        "48": "IconSmall.jpg",
        "128": "Icon.jpg"
    },
    "description": "Hides that annoying 'While you were away...' section on Twitter, since repeatedly telling them to stop showing it doesn't work",
    "short_name": "WYWARemover",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/twitter.com\/*",
                "http:\/\/twitter.com\/*"
            ],
            "js": [
                "jquery-2.2.0.min.js",
                "removeWYWA.js"
            ]
        }
    ]
}