This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<svg width="0" height="0" class="banner-svg" id="banner_svg"> | |
<defs> | |
<filter id="f"> | |
<feImage id="svg_feImage" xlink:href="http://manhua.qpic.cn/manhua_cover/0/07_16_49_567e32e30151c7147e5160349416df41.jpg/0" x="0" | |
y="0" width="0" height="0" preserveAspectRatio="xMidYMid slice"/> | |
<feGaussianBlur stdDeviation="30"/> | |
</filter> | |
</defs> | |
<rect id="svg_rect" x="0" y="0" width="0" height="0" filter="url(#f)"/> | |
</svg> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* 仅IE6和IE7识别 */ | |
@media screen\9 { | |
.selector { | |
property: value; | |
} | |
} | |
/* 仅IE6和IE7、IE8识别 */ | |
@media \0screen\,screen\9 { | |
.selector { | |
property: value; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* artTemplate - Template Engine | |
* https://github.com/aui/artTemplate | |
* Released under the MIT, BSD, and GPL Licenses | |
*/ | |
'use strict'; | |
!(function () { | |
/** |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var abstractFileManager = function() { | |
}; | |
abstractFileManager.prototype.getPath = function (filename) { | |
var j = filename.lastIndexOf('?'); | |
if (j > 0) { | |
filename = filename.slice(0, j); | |
} | |
j = filename.lastIndexOf('/'); | |
if (j < 0) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name 网盘自动填写密码【增强版】 | |
// @description 网盘自动填写提取密码【增强版】+网盘超链接与提取码融合。 | |
// @author 极品小猫 | |
// @namespace http://www.cnblogs.com/hkmhd/ | |
// @homepage https://greasyfork.org/scripts/13463 | |
// @supportURL https://greasyfork.org/scripts/13463/feedback | |
// @version 2.2.0 | |
// @date 2016.03.19 | |
// |