Disable Twitter Feed

Removes the timeline on Twitter's homepage.

O que é Disable Twitter Feed?

Disable Twitter Feed é uma extensão do Chrome desenvolvida por https://lukasrosenstock.net, e sua principal característica é "Removes the timeline on Twitter's homepage.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Disable Twitter Feed

Baixe arquivos de extensão Disable Twitter Feed 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

                        The Twitter timeline can be a rabbit-hole that hurts your productivity. Disable Twitter Feed is a minimalist, single-purpose add-on without any configuration options. It does one thing: removing the timeline on Twitter's homepage. All other functionality (e.g., private messages, opening individual profiles) remains intact.                    

Informações Básicas da Extensão

Nome Disable Twitter Feed Disable Twitter Feed
ID oppnglmfkpdfodnepgilhcagbbdojekd
URL Oficial https://chromewebstore.google.com/detail/disable-twitter-feed/oppnglmfkpdfodnepgilhcagbbdojekd
Descrição Removes the timeline on Twitter's homepage.
Tamanho do Arquivo 8 KB
Contagem de Instalações 388
Versão Atual 1.0
Última Atualização 2020-12-04
Data de Publicação 2020-12-03
Classificação 5.00/5 Total de 2 Avaliações
Desenvolvedor https://lukasrosenstock.net
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Disable Twitter Feed",
    "version": "1.0",
    "description": "Removes the timeline on Twitter's homepage.",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.twitter.com\/*"
            ],
            "js": [
                "disablefeed.js"
            ],
            "run_at": "document_start"
        }
    ],
    "icons": {
        "48": "icon.png",
        "96": "[email protected]"
    }
}