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 je Twitter Refresher?

Twitter Refresher je rozšíření Chrome vyvinuté Cratos Design, a jeho hlavní funkcí je „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.“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Twitter Refresher

Stáhněte si soubory rozšíření Twitter Refresher ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název Twitter Refresher Twitter Refresher
ID egbgccfgdplkmpddefhjihakjhlnmlhe
Oficiální URL https://chromewebstore.google.com/detail/twitter-refresher/egbgccfgdplkmpddefhjihakjhlnmlhe
Popis 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.
Velikost souboru 43.04 KB
Počet instalací 382
Aktuální Verze 1.0
Poslední Aktualizace 2015-03-27
Datum Vydání 2015-03-27
Hodnocení 3.40/5 Celkem 5 Hodnocení
Vývojář Cratos Design
E-mail [email protected]
Typ Platby free
Podporované Jazyky 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"
    ]
}