GoodTwitter

Forces your browser to use old twitter.

GoodTwitterคืออะไร?

GoodTwitter เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Zusor และคุณลักษณะหลักของมันคือ "Forces your browser to use old twitter."

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

screenshot

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

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

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

                        THIS ADDON IS DEPRECATED AND WILL NO LONGER BE SUPPORTED
https://twitter.com/ZusorOW/status/1258885451055800320

This Add-on brings back old twitter by changing the user agent of all your browsers requests to the one of an older browser

If this add-on stops working, try the troubleshooting guide.

For troubleshooting go here https://github.com/ZusorCode/GoodTwitterChrome/blob/master/troubleshooting.md

EXPLANATION FOR REQUIRING THE BROWSING HISTORY PERMISSION:
If you install the add-on there will be a warning that it can read your browsing history. This is technically true, however it doesn't. It needs the permission to clean the cache for twitter after installing. GoodTwitter does NOT collect any information about you, it does NOT use any analytics at all.

This project is open-source: github.com/ZusorCode/GoodTwitterChrome

Want to support me? ko-fi.com/zusordev

Built by Zusor inspired by super raging about the redesign                    

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

ชื่อ GoodTwitter GoodTwitter
ID jbanhionoclikdjnjlcmefiofgjimgca
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/goodtwitter/jbanhionoclikdjnjlcmefiofgjimgca
คำอธิบาย Forces your browser to use old twitter.
ขนาดไฟล์ 11.05 KB
จำนวนการติดตั้ง 47,807
เวอร์ชันปัจจุบัน 2.2
อัปเดตครั้งล่าสุด 2020-05-08
วันที่เผยแพร่ 2020-05-08
คะแนน 4.69/5 รวมทั้งหมด 945 คะแนน
ผู้พัฒนา Zusor
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "GoodTwitter",
    "version": "2.2",
    "description": "Forces your browser to use old twitter.",
    "manifest_version": 2,
    "permissions": [
        "webRequest",
        "webRequestBlocking",
        "*:\/\/*.twitter.com\/",
        "browsingData",
        "tabs"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.twitter.com\/*"
            ],
            "js": [
                "remove-banner.js"
            ]
        }
    ],
    "browser_action": {
        "default_popup": "popup\/info.html"
    },
    "icons": {
        "128": "128.png"
    }
}