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.

Co to jest Twitter Refresher?

Twitter Refresher to rozszerzenie Chrome opracowane przez Cratos Design, a jego główną funkcją jest „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.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Twitter Refresher

Pobierz pliki rozszerzeń Twitter Refresher w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Twitter Refresher Twitter Refresher
ID egbgccfgdplkmpddefhjihakjhlnmlhe
Oficjalny URL https://chromewebstore.google.com/detail/twitter-refresher/egbgccfgdplkmpddefhjihakjhlnmlhe
Opis 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.
Rozmiar pliku 43.04 KB
Liczba instalacji 382
Aktualna Wersja 1.0
Ostatnia Aktualizacja 2015-03-27
Data Publikacji 2015-03-27
Ocena 3.40/5 Łącznie 5 Oceny
Deweloper Cratos Design
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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"
    ]
}