Twitter Stripped

Minimal Twitter experience for web.

什么是Twitter Stripped?

Twitter Stripped是由https://earvinpiamonte.com开发的Chrome扩展程序,该扩展的主要功能是“Minimal Twitter experience for web.”。

扩展截图

screenshot
screenshot
screenshot

下载Twitter Stripped扩展crx文件

下载Twitter Stripped扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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\/*"
            ]
        }
    ]
}