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
公式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
Eメール [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"
    }
}