Twitter Stripped

Minimal Twitter experience for web.

Qu'est-ce que Twitter Stripped ?

Twitter Stripped est une extension Chrome développée par https://earvinpiamonte.com, et sa fonction principale est "Minimal Twitter experience for web.".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot

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

Téléchargez les fichiers d'extension Twitter Stripped 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

                        A Google Chrome extension for minimal Twitter experience for web.

This project was initially for my personal use. Trends, who to follow, and the messages tab are too noisy for me so I decided to build this extension to remove those.

The extension removes components that are less important than just reading the feed (at least for me :wink ).

Removes the following components:
- "Search Twitter"
- "Trends for you"
- "Who to follow"
- "Explore" link
- "Tweet" button
- "Messages" tab on footer
- dropdown icon on profile link
- likes counter
- retweets counter
- comments/ sub-tweets counter
- who liked a Tweet
- who retweeted a Tweet
- footer

Benefits
- Your decision to like and retweet will be based on the content of the Tweet instead of depending on the numbers/ counter.
- You won't be distracted with the trends. Less stress IMO.
- You won't be able to see the annoying "Messages" tab. Who decided to put this and didn't put a close button ?!

Code is open source
https://github.com/earvinpiamonte/twitter-stripped-chrome                    

Informations de Base sur l'Extension

Nom Twitter Stripped Twitter Stripped
ID joekhilngfhflafcfahdbjdcoibnhgld
URL Officiel https://chromewebstore.google.com/detail/twitter-stripped/joekhilngfhflafcfahdbjdcoibnhgld
Description Minimal Twitter experience for web.
Taille du Fichier 473 KB
Nombre d'Installations 45
Version Actuelle 0.1.0
Dernière Mise à Jour 2020-08-16
Date de Publication 2020-08-11
Évaluation 5.00/5 Total 1 Évaluations
Développeur https://earvinpiamonte.com
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/earvinpiamonte/twitter-stripped-chrome
URL de la Page d'Aide https://ko-fi.com/earvinpiamonte
Langues Prises en Charge en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Twitter Stripped",
    "version": "0.1.0",
    "manifest_version": 2,
    "description": "Minimal Twitter experience for web.",
    "icons": {
        "16": "images\/icon16.png",
        "32": "images\/icon32.png",
        "48": "images\/icon48.png",
        "120": "images\/icon120.png",
        "128": "images\/icon128.png",
        "512": "images\/icon512.png"
    },
    "content_scripts": [
        {
            "css": [
                "app.css"
            ],
            "matches": [
                "https:\/\/twitter.com\/*"
            ]
        }
    ]
}