Skip to content

Commit

Permalink
Super_preloaderPlus_one 6.2.4
Browse files Browse the repository at this point in the history
- 修正设置无法全局读取和存储的问题
- 修正主页链接
  • Loading branch information
ywzhaiqi committed Jul 1, 2014
1 parent 377ff42 commit 902d9ad
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 18 deletions.
4 changes: 2 additions & 2 deletions Super_preloaderPlus/src/meta.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
// @namespace https://github.com/ywzhaiqi
// @description 预读+翻页..全加速你的浏览体验...
// @author ywzhaiqi && NLF(原作者)
// @version 6.2.3
// @homepageURL https://greasyfork.org/scripts/178900/
// @version 6.2.4
// @homepageURL https://greasyfork.org/scripts/293-super-preloaderplus-one
// @updateURL https://greasyfork.org/scripts/293-super-preloaderplus-one/code/Super_preloaderPlus_one.meta.js
// @downloadURL https://greasyfork.org/scripts/293-super-preloaderplus-one/code/Super_preloaderPlus_one.user.js

Expand Down
14 changes: 7 additions & 7 deletions Super_preloaderPlus/src/rule.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,13 +24,13 @@ if (window.name === 'superpreloader-iframe') { // 搜狗,iframe里面怎么不


// GM 兼容
var GM_log = window.GM_log,
GM_getValue = window.GM_getValue,
GM_setValue = window.GM_setValue,
GM_registerMenuCommand = window.GM_registerMenuCommand,
GM_xmlhttpRequest = window.GM_xmlhttpRequest,
GM_openInTab = window.GM_openInTab,
GM_addStyle;
var GM_log = this.GM_log,
GM_getValue = this.GM_getValue,
GM_setValue = this.GM_setValue,
GM_registerMenuCommand = this.GM_registerMenuCommand,
GM_xmlhttpRequest = this.GM_xmlhttpRequest,
GM_openInTab = this.GM_openInTab,
GM_addStyle = this.GM_addStyle;

gmCompatible();

Expand Down
18 changes: 9 additions & 9 deletions Super_preloaderPlus/super_preloaderplus_one.user.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
// @namespace https://github.com/ywzhaiqi
// @description 预读+翻页..全加速你的浏览体验...
// @author ywzhaiqi && NLF(原作者)
// @version 6.2.3
// @homepageURL https://greasyfork.org/scripts/178900/
// @version 6.2.4
// @homepageURL https://greasyfork.org/scripts/293-super-preloaderplus-one
// @updateURL https://greasyfork.org/scripts/293-super-preloaderplus-one/code/Super_preloaderPlus_one.meta.js
// @downloadURL https://greasyfork.org/scripts/293-super-preloaderplus-one/code/Super_preloaderPlus_one.user.js

Expand Down Expand Up @@ -69,13 +69,13 @@ if (window.name === 'superpreloader-iframe') { // 搜狗,iframe里面怎么不


// GM 兼容
var GM_log = window.GM_log,
GM_getValue = window.GM_getValue,
GM_setValue = window.GM_setValue,
GM_registerMenuCommand = window.GM_registerMenuCommand,
GM_xmlhttpRequest = window.GM_xmlhttpRequest,
GM_openInTab = window.GM_openInTab,
GM_addStyle;
var GM_log = this.GM_log,
GM_getValue = this.GM_getValue,
GM_setValue = this.GM_setValue,
GM_registerMenuCommand = this.GM_registerMenuCommand,
GM_xmlhttpRequest = this.GM_xmlhttpRequest,
GM_openInTab = this.GM_openInTab,
GM_addStyle = this.GM_addStyle;

gmCompatible();

Expand Down

0 comments on commit 902d9ad

Please sign in to comment.