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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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\/*"
            ]
        }
    ]
}