Twitter Stripped

Minimal Twitter experience for web.

Twitter Strippedคืออะไร?

Twitter Stripped เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://earvinpiamonte.com และคุณลักษณะหลักของมันคือ "Minimal Twitter experience for web."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Twitter Stripped

ดาวน์โหลดไฟล์ส่วนขยาย 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\/*"
            ]
        }
    ]
}