Twitter Stripped

Minimal Twitter experience for web.

Twitter Stripped क्या है?

Twitter Stripped https://earvinpiamonte.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Minimal Twitter experience for web."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Twitter Stripped एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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                    

एक्सटेंशन की मूल जानकारी

नाम Twitter Stripped Twitter Stripped
ID joekhilngfhflafcfahdbjdcoibnhgld
आधिकारिक URL https://chromewebstore.google.com/detail/twitter-stripped/joekhilngfhflafcfahdbjdcoibnhgld
विवरण Minimal Twitter experience for web.
फ़ाइल का आकार 473 KB
स्थापना संख्या 45
वर्तमान संस्करण 0.1.0
अंतिम अपडेट 2020-08-16
प्रकाशन तिथि 2020-08-11
रेटिंग 5.00/5 कुल 1 रेटिंग्स
डेवलपर https://earvinpiamonte.com
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/earvinpiamonte/twitter-stripped-chrome
सहायता पृष्ठ URL https://ko-fi.com/earvinpiamonte
समर्थित भाषाएँ 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\/*"
            ]
        }
    ]
}