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

Co to jest While you were away Remover?

While you were away Remover to rozszerzenie Chrome opracowane przez Mark, a jego główną funkcją jest „Hides that annoying 'While you were away...' section on Twitter, since repeatedly telling them to stop showing it doesn't work”.

Pobierz plik CRX rozszerzenia While you were away Remover

Pobierz pliki rozszerzeń While you were away Remover w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa While you were away Remover While you were away Remover
ID kfhdopamocjnncalnifjpcbhkckbndlb
Oficjalny URL https://chromewebstore.google.com/detail/while-you-were-away-remov/kfhdopamocjnncalnifjpcbhkckbndlb
Opis Hides that annoying 'While you were away...' section on Twitter, since repeatedly telling them to stop showing it doesn't work
Rozmiar pliku 56.99 KB
Liczba instalacji 65
Aktualna Wersja 0.1
Ostatnia Aktualizacja 2016-02-03
Data Publikacji 2016-02-02
Ocena 4.00/5 Łącznie 8 Oceny
Deweloper Mark
Typ Płatności free
Obsługiwane Języki 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"
            ]
        }
    ]
}