GoodTwitter

Forces your browser to use old twitter.

O que é GoodTwitter?

GoodTwitter é uma extensão do Chrome desenvolvida por Zusor, e sua principal característica é "Forces your browser to use old twitter.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão GoodTwitter

Baixe arquivos de extensão GoodTwitter no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome GoodTwitter GoodTwitter
ID jbanhionoclikdjnjlcmefiofgjimgca
URL Oficial https://chromewebstore.google.com/detail/goodtwitter/jbanhionoclikdjnjlcmefiofgjimgca
Descrição Forces your browser to use old twitter.
Tamanho do Arquivo 11.05 KB
Contagem de Instalações 47,807
Versão Atual 2.2
Última Atualização 2020-05-08
Data de Publicação 2020-05-08
Classificação 4.69/5 Total de 945 Avaliações
Desenvolvedor Zusor
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados 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"
    }
}