Clean Twitter

Remove all the annoying clutter from your Twitter.

Qu'est-ce que Clean Twitter ?

Clean Twitter est une extension Chrome développée par dhaiwatpandya, et sa fonction principale est "Remove all the annoying clutter from your Twitter.".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension Clean Twitter

Téléchargez les fichiers d'extension Clean Twitter au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Clean Twitter Clean Twitter
ID ibcjnfhpdjinbcmojnmpnokcgfljiebb
URL Officiel https://chromewebstore.google.com/detail/clean-twitter/ibcjnfhpdjinbcmojnmpnokcgfljiebb
Description Remove all the annoying clutter from your Twitter.
Taille du Fichier 98.75 KB
Nombre d'Installations 306
Version Actuelle 0.3.0
Dernière Mise à Jour 2021-02-26
Date de Publication 2021-02-16
Évaluation 4.00/5 Total 4 Évaluations
Développeur dhaiwatpandya
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/Dhaiwat10/clean-twitter
URL de la Page d'Aide https://github.com/Dhaiwat10/clean-twitter/issues
Langues Prises en Charge 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"
    ]
}