Twitter Refresher

Loads new Tweets on Twitter if you are at the top of the page. Will not load new tweets if you are below the 'new tweets' link.

O que é Twitter Refresher?

Twitter Refresher é uma extensão do Chrome desenvolvida por Cratos Design, e sua principal característica é "Loads new Tweets on Twitter if you are at the top of the page. Will not load new tweets if you are below the 'new tweets' link.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Twitter Refresher

Baixe arquivos de extensão Twitter Refresher 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 will automatically click on the load new tweets but only if you are at the top of the page.  Many of the other extensions will always click on it which causes you to scroll back to the top of the screen.  This one takes into account where you are at the page and will only "click" the load link when you are at the top.                    

Informações Básicas da Extensão

Nome Twitter Refresher Twitter Refresher
ID egbgccfgdplkmpddefhjihakjhlnmlhe
URL Oficial https://chromewebstore.google.com/detail/twitter-refresher/egbgccfgdplkmpddefhjihakjhlnmlhe
Descrição Loads new Tweets on Twitter if you are at the top of the page. Will not load new tweets if you are below the 'new tweets' link.
Tamanho do Arquivo 43.04 KB
Contagem de Instalações 382
Versão Atual 1.0
Última Atualização 2015-03-27
Data de Publicação 2015-03-27
Classificação 3.40/5 Total de 5 Avaliações
Desenvolvedor Cratos Design
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "background": {
        "page": "background.html"
    },
    "content_scripts": [
        {
            "all_frames": true,
            "js": [
                "jquery-1.7.2.min.js",
                "functions.js"
            ],
            "matches": [
                "http:\/\/twitter.com\/*",
                "https:\/\/twitter.com\/*"
            ],
            "run_at": "document_idle"
        }
    ],
    "description": "Loads new Tweets on Twitter if you are at the top of the page.  Will not load new tweets if you are below the 'new tweets' link.",
    "icons": {
        "128": "images\/twitter.png",
        "48": "images\/twitter.png"
    },
    "manifest_version": 2,
    "name": "Twitter Refresher",
    "permissions": [
        "http:\/\/twitter.com\/",
        "https:\/\/twitter.com\/"
    ],
    "version": "1.0",
    "web_accessible_resources": [
        "reload.js"
    ]
}