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
Eメール [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\/*"
            ]
        }
    ]
}