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.
Cos'è Twitter Refresher?
Twitter Refresher è un'estensione di Chrome sviluppata da Cratos Design, e la sua funzione principale è "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.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Twitter Refresher
Scarica i file di estensione Twitter Refresher in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | Twitter Refresher |
ID | egbgccfgdplkmpddefhjihakjhlnmlhe |
URL Ufficiale | https://chromewebstore.google.com/detail/twitter-refresher/egbgccfgdplkmpddefhjihakjhlnmlhe |
Descrizione | 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. |
Dimensione del File | 43.04 KB |
Conteggio Installazioni | 382 |
Versione Corrente | 1.0 |
Ultimo Aggiornamento | 2015-03-27 |
Data di Pubblicazione | 2015-03-27 |
Valutazione | 3.40/5 Totale 5 Valutazioni |
Sviluppatore | Cratos Design |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | 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" ] } |