GoodTwitter

Forces your browser to use old twitter.

Vad är GoodTwitter?

GoodTwitter är en Chrome-tillägg utvecklad av Zusor, och dess huvudfunktion är "Forces your browser to use old twitter.".

Tilläggsskärmbilder

screenshot

Ladda ner GoodTwitter-förlängningens CRX-fil

Ladda ner GoodTwitter-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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                    

Grundläggande Information om Tillägg

Namn GoodTwitter GoodTwitter
ID jbanhionoclikdjnjlcmefiofgjimgca
Officiell webbadress https://chromewebstore.google.com/detail/goodtwitter/jbanhionoclikdjnjlcmefiofgjimgca
Beskrivning Forces your browser to use old twitter.
Filstorlek 11.05 KB
Antal Installationer 47,807
Aktuell Version 2.2
Senast Uppdaterad 2020-05-08
Publiceringsdatum 2020-05-08
Betyg 4.69/5 Totalt 945 Betyg
Utvecklare Zusor
E-post [email protected]
Betalningssätt free
Stödda Språk 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"
    }
}