Skip to content

Commit

Permalink
update script source
Browse files Browse the repository at this point in the history
  • Loading branch information
Binux committed Jan 21, 2013
1 parent 742c17a commit 4764287
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,20 +10,20 @@ ThunderLixianExporter
* 云点播HTML5播放,导出
* 直接输出选中的链接,配合FlashGot/DownThemAll使用

![ThunderLixianExporter Setting](https://raw.github.com/binux/ThunderLixianExporter/master/ThunderLixianExporter.png)
![ThunderLixianExporter Setting](http://s.binux.me/TLE/master/ThunderLixianExporter.png)

Usage
-----

安装Userscript

> 使用支持userscript的浏览器访问: [ThunderLixianExporter.user.js](https://raw.github.com/binux/ThunderLixianExporter/master/ThunderLixianExporter.user.js)
> 使用支持userscript的浏览器访问: [ThunderLixianExporter.user.js](http://s.binux.me/TLE/master/ThunderLixianExporter.user.js)
>
> 打开lixian.xunlei.com 迅雷离线页面,开始使用吧!<br />
或,快速体验

> 将「`javascript:void((function(){var d=document;var s=d.createElement('script');s.src='http://git.io/Zg-0ug';s.id='TLE_script';d.body.appendChild(s)})())`」保存在书签栏中。
> 将「`javascript:void((function(){var d=document;var s=d.createElement('script');s.src='http://s.binux.me/tle.js';s.id='TLE_script';d.body.appendChild(s)})())`」保存在书签栏中。
>
> 在lixian.xunlei.com页面**点击书签**,开始使用吧!<br />
Expand Down
2 changes: 1 addition & 1 deletion ThunderLixianExporter.bookmark.js
Original file line number Diff line number Diff line change
@@ -1 +1 @@
javascript:void((function(){var d=document;var s=d.createElement('script');s.src='http://git.io/Zg-0ug';s.id='TLE_script';d.body.appendChild(s)})())
javascript:void((function(){var d=document;var s=d.createElement('script');s.src='http://s.binux.me/tle.js';s.id='TLE_script';d.body.appendChild(s)})())
6 changes: 3 additions & 3 deletions ThunderLixianExporter.user.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// ==UserScript==
// @name ThunderLixianExporter
// @namespace http://dynamic.cloud.vip.xunlei.com/
// @version 0.35
// @version 0.36
// @description export thunder lixian url to aria2/wget
// @match http://dynamic.cloud.vip.xunlei.com/user_task?*
// @match http://61.147.76.6/iplay.html?*
Expand All @@ -13,8 +13,8 @@
var script = document.createElement('script');
script.id = "TLE_script";
if (location.host == "dynamic.cloud.vip.xunlei.com") {
script.src = "https://raw.github.com/binux/ThunderLixianExporter/master/ThunderLixianExporter.js";
script.src = "http://s.binux.me/TLE/master/ThunderLixianExporter.js";
} else {
script.src = "https://raw.github.com/binux/ThunderLixianExporter/master/vod_html5.js";
script.src = "https://s.binux.me/TLE/master/vod_html5.js";
}
document.body.appendChild(script);

0 comments on commit 4764287

Please sign in to comment.