GoodTwitter

Forces your browser to use old twitter.

什麼是GoodTwitter?

GoodTwitter是由Zusor開發的Chrome擴展程式,該擴展的主要功能是“Forces your browser to use old twitter.”。

擴展截圖

screenshot

下載GoodTwitter擴展crx文件

下載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
官方網址 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"
    }
}