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

Was ist While you were away Remover?

While you were away Remover ist eine Chrome-Erweiterung, die von Mark entwickelt wurde, und ihr Hauptmerkmal ist "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-Erweiterungs-CRX-Datei herunterladen

Laden Sie While you were away Remover-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name While you were away Remover While you were away Remover
ID kfhdopamocjnncalnifjpcbhkckbndlb
Offizielle URL https://chromewebstore.google.com/detail/while-you-were-away-remov/kfhdopamocjnncalnifjpcbhkckbndlb
Beschreibung Hides that annoying 'While you were away...' section on Twitter, since repeatedly telling them to stop showing it doesn't work
Dateigröße 56.99 KB
Installationsanzahl 65
Aktuelle Version 0.1
Letztes Update 2016-02-03
Veröffentlichungsdatum 2016-02-02
Bewertung 4.00/5 Insgesamt 8 Bewertungen
Entwickler Mark
Zahlungsart free
Unterstützte Sprachen 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"
            ]
        }
    ]
}