Better Twitter

Hide what's not important on Twitter.com

Better Twitterคืออะไร?

Better Twitter เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Razvan Caliman และคุณลักษณะหลักของมันคือ "Hide what's not important on Twitter.com"

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

screenshot
screenshot

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

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

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

                        Bug reports and feature requests go here:
https://github.com/oslego/better-twitter/issues

Toggle these preferences on the extension's options page:

- No fame: Hide number of followers and following count
- No vanity: Hide number of tweet likes, retweets and replies
- Hide promoted tweets
- Hide retweets
- Hide tweets liked by others
- Hide “Trends for you”
- Hide “Who to follow”
- Hide website footer                    

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

ชื่อ Better Twitter Better Twitter
ID illmpnnkeobcgnnjghammeohfjpjoljp
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/better-twitter/illmpnnkeobcgnnjghammeohfjpjoljp
คำอธิบาย Hide what's not important on Twitter.com
ขนาดไฟล์ 11.05 KB
จำนวนการติดตั้ง 3,699
เวอร์ชันปัจจุบัน 2.1.2
อัปเดตครั้งล่าสุด 2023-01-16
วันที่เผยแพร่ 2020-06-03
คะแนน 3.65/5 รวมทั้งหมด 31 คะแนน
ผู้พัฒนา Razvan Caliman
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/oslego/better-twitter/
URL หน้าช่วยเหลือ https://github.com/oslego/better-twitter/issues
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Better Twitter",
    "version": "2.1.2",
    "description": "Hide what's not important on Twitter.com",
    "manifest_version": 2,
    "applications": {
        "gecko": {
            "id": "{ef32ca60-1728-4011-a585-4de439fe7ba7}"
        }
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false,
        "browser_style": true,
        "chrome_style": true
    },
    "icons": {
        "64": "icon-64.png",
        "128": "icon-128.png"
    },
    "browser_action": {
        "browser_style": true,
        "default_popup": "options.html"
    },
    "permissions": [
        "storage"
    ],
    "web_accessible_resources": [
        "options.js",
        "prefs.js"
    ],
    "content_scripts": [
        {
            "run_at": "document_start",
            "matches": [
                "https:\/\/twitter.com\/*",
                "https:\/\/mobile.twitter.com\/*"
            ],
            "css": [
                "content.css"
            ],
            "js": [
                "utils.js",
                "prefs.js",
                "content.js"
            ]
        }
    ]
}