Clean Twitter

Remove all the annoying clutter from your Twitter.

Clean Twitterคืออะไร?

Clean Twitter เป็นส่วนขยายของ Chrome ที่พัฒนาโดย dhaiwatpandya และคุณลักษณะหลักของมันคือ "Remove all the annoying clutter from your Twitter."

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

screenshot
screenshot
screenshot
screenshot

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

ดาวน์โหลดไฟล์ส่วนขยาย Clean Twitter ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Enhance your Twitter experience by removing some of the clutter.

Currently supported features:

1) No sidebars on the right (Trending hashtags, ads, follow recommendations, etc)
2) No metrics/numbers (Likes, RTs, replies, followers)

You can turn any of the features on and off at any time.

This extension is open-source (https://github.com/Dhaiwat10/clean-twitter) and 100% safe to use. It does not collect any information or store it.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Clean Twitter Clean Twitter
ID ibcjnfhpdjinbcmojnmpnokcgfljiebb
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/clean-twitter/ibcjnfhpdjinbcmojnmpnokcgfljiebb
คำอธิบาย Remove all the annoying clutter from your Twitter.
ขนาดไฟล์ 98.75 KB
จำนวนการติดตั้ง 306
เวอร์ชันปัจจุบัน 0.3.0
อัปเดตครั้งล่าสุด 2021-02-26
วันที่เผยแพร่ 2021-02-16
คะแนน 4.00/5 รวมทั้งหมด 4 คะแนน
ผู้พัฒนา dhaiwatpandya
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/Dhaiwat10/clean-twitter
URL หน้าช่วยเหลือ https://github.com/Dhaiwat10/clean-twitter/issues
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Clean Twitter",
    "description": "Remove all the annoying clutter from your Twitter.",
    "version": "0.3.0",
    "icons": {
        "16": "icon.png",
        "32": "icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/twitter.com\/*"
            ],
            "js": [
                "js\/jquery.js",
                "js\/content.js",
                "js\/popup.js"
            ]
        }
    ],
    "browser_action": {
        "default_icon": "icon.png",
        "default_title": "Clean Twitter",
        "default_popup": "popup.html"
    },
    "permissions": [
        "activeTab",
        "storage",
        "tabs"
    ]
}