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.
什么是Twitter Refresher?
Twitter Refresher是由Cratos Design开发的Chrome扩展程序,该扩展的主要功能是“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.”。
扩展截图
下载Twitter Refresher扩展crx文件
下载Twitter Refresher扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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.
扩展基本信息
名称 | Twitter Refresher |
ID | egbgccfgdplkmpddefhjihakjhlnmlhe |
官方URL | https://chromewebstore.google.com/detail/twitter-refresher/egbgccfgdplkmpddefhjihakjhlnmlhe |
简介 | 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. |
文件大小 | 43.04 KB |
安装次数 | 382 |
当前版本 | 1.0 |
更新时间 | 2015-03-27 |
上架时间 | 2015-03-27 |
评分 | 3.40/5 共5次评分 |
开发者 | Cratos Design |
电子邮箱 | [email protected] |
付费类型 | free |
支持的语言 | 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" ] } |