Fix my Twitter!

Gets back Twitter's old design by changing the useragent string

O que é Fix my Twitter!?

Fix my Twitter! é uma extensão do Chrome desenvolvida por Zasz, e sua principal característica é "Gets back Twitter's old design by changing the useragent string".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Fix my Twitter!

Baixe arquivos de extensão Fix my Twitter! 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

                        Almost everyone agrees Twitter's new design is ugly. *Very* ugly. This add-on gets you back the old style!

It changes the UA string to IE11's and fixes the clipboard.

IMPORTANT: you HAVE to clear Twitter's cookies on install, as this is not something that can be done automatically on Chrome. 

The source code can be found at: https://github.com/zaszthecroc/fix-my-twitter

Permissions:

* "https://twitter.com/*": needed for access to the webRequest API
* "webRequest", "webRequestBlocking": needed to edit the requests' headers before sending
* "browsingData": needed to clear Twitter's cookies                    

Informações Básicas da Extensão

Nome Fix my Twitter! Fix my Twitter!
ID cajlejogbjblhiamnihpfhmpaohgakhl
URL Oficial https://chromewebstore.google.com/detail/fix-my-twitter/cajlejogbjblhiamnihpfhmpaohgakhl
Descrição Gets back Twitter's old design by changing the useragent string
Tamanho do Arquivo 7.22 KB
Contagem de Instalações 376
Versão Atual 1.2
Última Atualização 2019-07-20
Data de Publicação 2019-07-19
Classificação 4.26/5 Total de 23 Avaliações
Desenvolvedor Zasz
Tipo de Pagamento free
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "Gets back Twitter's old design by changing the useragent string",
    "manifest_version": 2,
    "version": "1.2",
    "name": "Fix my Twitter!",
    "icons": {
        "48": "img\/48.png",
        "96": "img\/96.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/twitter.com\/*"
            ],
            "js": [
                "content-script.js"
            ]
        }
    ],
    "permissions": [
        "https:\/\/twitter.com\/*",
        "webRequest",
        "webRequestBlocking",
        "browsingData"
    ]
}