Twitter Sanitizer

Improve your Twitter experience by hiding different features.

Τι είναι το Twitter Sanitizer;

Το Twitter Sanitizer είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Hristiyan Dodov, και η κύρια λειτουργία του είναι "Improve your Twitter experience by hiding different features.".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Twitter Sanitizer

Λήψη αρχείων επέκτασης Twitter Sanitizer σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Twitter Sanitizer Twitter Sanitizer
ID amdinnnilgkcpgohiijcejpnhgngmfdl
Επίσημο URL https://chromewebstore.google.com/detail/twitter-sanitizer/amdinnnilgkcpgohiijcejpnhgngmfdl
Περιγραφή Improve your Twitter experience by hiding different features.
Μέγεθος Αρχείου 29.21 KB
Αριθμός Εγκαταστάσεων 176
Τρέχουσα Έκδοση 1.1
Τελευταία Ενημέρωση 2017-06-26
Ημερομηνία Δημοσίευσης 2017-06-25
Αξιολόγηση 4.00/5 Συνολικά 3 Αξιολογήσεις
Προγραμματιστής Hristiyan Dodov
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες 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\/*"
            ]
        }
    ]
}