Twitter Sanitizer

Improve your Twitter experience by hiding different features.

Co je Twitter Sanitizer?

Twitter Sanitizer je rozšíření Chrome vyvinuté Hristiyan Dodov, a jeho hlavní funkcí je „Improve your Twitter experience by hiding different features.“.

Snímky obrazovky rozšíření

screenshot
screenshot
screenshot
screenshot
screenshot

Stáhnout soubor CRX rozšíření Twitter Sanitizer

Stáhněte si soubory rozšíření Twitter Sanitizer ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        This extension allows you to hide different parts of Twitter.

The most notable feature is removing followers, likes and pretty much all numbers. You can also make you feed more compact by removing the action buttons (reply, retweet, like) from each tweet. However, you can still do these actions after clicking on a tweet.

Here's the full list of toggles:

- Sidebars
- Profile counters
- Profile card stats
- Post RTs and likes
- Feed post actions
- Followers you know
- Notification faces                    

Základní Informace o Rozšíření

Název Twitter Sanitizer Twitter Sanitizer
ID amdinnnilgkcpgohiijcejpnhgngmfdl
Oficiální URL https://chromewebstore.google.com/detail/twitter-sanitizer/amdinnnilgkcpgohiijcejpnhgngmfdl
Popis Improve your Twitter experience by hiding different features.
Velikost souboru 29.21 KB
Počet instalací 176
Aktuální Verze 1.1
Poslední Aktualizace 2017-06-26
Datum Vydání 2017-06-25
Hodnocení 4.00/5 Celkem 3 Hodnocení
Vývojář Hristiyan Dodov
E-mail [email protected]
Typ Platby free
Podporované Jazyky en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Twitter Sanitizer",
    "version": "1.1",
    "author": "Hristiyan Dodov",
    "description": "Improve your Twitter experience by hiding different features.",
    "icons": {
        "16": "icon-16.png",
        "32": "icon-32.png",
        "64": "icon-64.png",
        "128": "icon-128.png"
    },
    "browser_action": {
        "default_popup": "popup.html"
    },
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "run_at": "document_start",
            "js": [
                "hider.js"
            ],
            "matches": [
                "http:\/\/twitter.com\/*",
                "https:\/\/twitter.com\/*"
            ]
        }
    ]
}