Twitter Stripped

Minimal Twitter experience for web.

Wat is Twitter Stripped?

Twitter Stripped is een Chrome-extensie ontwikkeld door https://earvinpiamonte.com, en de belangrijkste functie is "Minimal Twitter experience for web.".

Extensie Screenshots

screenshot
screenshot
screenshot

Download het CRX-bestand van de extensie Twitter Stripped

Download Twitter Stripped-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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                    

Basisinformatie over de Extensie

Naam Twitter Stripped Twitter Stripped
ID joekhilngfhflafcfahdbjdcoibnhgld
Officiële URL https://chromewebstore.google.com/detail/twitter-stripped/joekhilngfhflafcfahdbjdcoibnhgld
Beschrijving Minimal Twitter experience for web.
Bestandsgrootte 473 KB
Aantal Installaties 45
Huidige Versie 0.1.0
Laatst Bijgewerkt 2020-08-16
Publicatiedatum 2020-08-11
Beoordeling 5.00/5 Totaal 1 Beoordelingen
Ontwikkelaar https://earvinpiamonte.com
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/earvinpiamonte/twitter-stripped-chrome
Help Pagina-URL https://ko-fi.com/earvinpiamonte
Ondersteunde Talen 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\/*"
            ]
        }
    ]
}