Clean Twitter

Remove all the annoying clutter from your Twitter.

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

Το Clean Twitter είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον dhaiwatpandya, και η κύρια λειτουργία του είναι "Remove all the annoying clutter from your Twitter.".

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

screenshot
screenshot
screenshot
screenshot

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

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

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

                        Enhance your Twitter experience by removing some of the clutter.

Currently supported features:

1) No sidebars on the right (Trending hashtags, ads, follow recommendations, etc)
2) No metrics/numbers (Likes, RTs, replies, followers)

You can turn any of the features on and off at any time.

This extension is open-source (https://github.com/Dhaiwat10/clean-twitter) and 100% safe to use. It does not collect any information or store it.                    

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

Όνομα Clean Twitter Clean Twitter
ID ibcjnfhpdjinbcmojnmpnokcgfljiebb
Επίσημο URL https://chromewebstore.google.com/detail/clean-twitter/ibcjnfhpdjinbcmojnmpnokcgfljiebb
Περιγραφή Remove all the annoying clutter from your Twitter.
Μέγεθος Αρχείου 98.75 KB
Αριθμός Εγκαταστάσεων 306
Τρέχουσα Έκδοση 0.3.0
Τελευταία Ενημέρωση 2021-02-26
Ημερομηνία Δημοσίευσης 2021-02-16
Αξιολόγηση 4.00/5 Συνολικά 4 Αξιολογήσεις
Προγραμματιστής dhaiwatpandya
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/Dhaiwat10/clean-twitter
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/Dhaiwat10/clean-twitter/issues
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Clean Twitter",
    "description": "Remove all the annoying clutter from your Twitter.",
    "version": "0.3.0",
    "icons": {
        "16": "icon.png",
        "32": "icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/twitter.com\/*"
            ],
            "js": [
                "js\/jquery.js",
                "js\/content.js",
                "js\/popup.js"
            ]
        }
    ],
    "browser_action": {
        "default_icon": "icon.png",
        "default_title": "Clean Twitter",
        "default_popup": "popup.html"
    },
    "permissions": [
        "activeTab",
        "storage",
        "tabs"
    ]
}