去百度搜索置顶推广 (ECMA6)

去除插入在百度搜索结果头部、尾部的推广链接。

  1. // ==UserScript==
  2. // @name 去百度搜索置顶推广 (ECMA6)
  3. // @author axetroy
  4. // @contributor axetroy
  5. // @description 去除插入在百度搜索结果头部、尾部的推广链接。
  6. // @version 2016.6.4
  7. // @grant none
  8. // @include *www.baidu.com*
  9. // @include *zhidao.baidu.com/search*
  10. // @connect *
  11. // @supportURL http://www.burningall.com
  12. // @compatible chrome 完美运行
  13. // @compatible firefox 完美运行
  14. // @run-at document-start
  15. // @contributionURL troy450409405@gmail.com|alipay.com
  16. // @namespace https://gf.qytechs.cn/zh-CN/users/3400-axetroy
  17. // @license The MIT License (MIT); http://opensource.org/licenses/MIT
  18. // ==/UserScript==
  19.  
  20. /*
  21.  
  22. Github源码:https://github.com/axetroy/GMscript
  23.  
  24. */
  25. /******/ (function(modules) { // webpackBootstrap
  26. /******/ // The module cache
  27. /******/ var installedModules = {};
  28.  
  29. /******/ // The require function
  30. /******/ function __webpack_require__(moduleId) {
  31.  
  32. /******/ // Check if module is in cache
  33. /******/ if(installedModules[moduleId])
  34. /******/ return installedModules[moduleId].exports;
  35.  
  36. /******/ // Create a new module (and put it into the cache)
  37. /******/ var module = installedModules[moduleId] = {
  38. /******/ exports: {},
  39. /******/ id: moduleId,
  40. /******/ loaded: false
  41. /******/ };
  42.  
  43. /******/ // Execute the module function
  44. /******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__);
  45.  
  46. /******/ // Flag the module as loaded
  47. /******/ module.loaded = true;
  48.  
  49. /******/ // Return the exports of the module
  50. /******/ return module.exports;
  51. /******/ }
  52.  
  53.  
  54. /******/ // expose the modules object (__webpack_modules__)
  55. /******/ __webpack_require__.m = modules;
  56.  
  57. /******/ // expose the module cache
  58. /******/ __webpack_require__.c = installedModules;
  59.  
  60. /******/ // __webpack_public_path__
  61. /******/ __webpack_require__.p = "";
  62.  
  63. /******/ // Load entry module and return exports
  64. /******/ return __webpack_require__(0);
  65. /******/ })
  66. /************************************************************************/
  67. /******/ ([
  68. /* 0 */
  69. /***/ function(module, exports, __webpack_require__) {
  70.  
  71. 'use strict';
  72.  
  73. var _jqLite = __webpack_require__(1);
  74.  
  75. var _jqLite2 = _interopRequireDefault(_jqLite);
  76.  
  77. var _$interval = __webpack_require__(55);
  78.  
  79. var _$interval2 = _interopRequireDefault(_$interval);
  80.  
  81. var _main = __webpack_require__(56);
  82.  
  83. var _main2 = _interopRequireDefault(_main);
  84.  
  85. function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
  86.  
  87. var loop = (0, _$interval2.default)(function () {
  88. new _main2.default().filter().turn();
  89. }, 50);
  90.  
  91. // init
  92. (0, _jqLite2.default)(function () {
  93. new _main2.default().filter().turn();
  94. _$interval2.default.cancel(loop);
  95. (0, _jqLite2.default)(document).observe(function () {
  96. return new _main2.default().filter().turn();
  97. });
  98. console.info('去广告启动...');
  99. });
  100.  
  101. /***/ },
  102. /* 1 */
  103. /***/ function(module, exports, __webpack_require__) {
  104.  
  105. 'use strict';
  106.  
  107. // es6 Array.from
  108.  
  109. Object.defineProperty(exports, "__esModule", {
  110. value: true
  111. });
  112.  
  113. var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol ? "symbol" : typeof obj; };
  114.  
  115. var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();
  116. // es6 Object.assign
  117.  
  118.  
  119. __webpack_require__(2);
  120.  
  121. __webpack_require__(30);
  122.  
  123. function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
  124.  
  125. var noop = function noop(x) {
  126. return x;
  127. };
  128.  
  129. var jqLite = function () {
  130. function jqLite() {
  131. var _this = this;
  132.  
  133. var selectors = arguments.length <= 0 || arguments[0] === undefined ? '' : arguments[0];
  134. var context = arguments.length <= 1 || arguments[1] === undefined ? document : arguments[1];
  135.  
  136. _classCallCheck(this, jqLite);
  137.  
  138. this.selectors = selectors;
  139. this.context = context;
  140. this.length = 0;
  141.  
  142. switch (typeof selectors === 'undefined' ? 'undefined' : _typeof(selectors)) {
  143. case 'undefined':
  144. break;
  145. case 'string':
  146. Array.from(context.querySelectorAll(selectors), function (ele, i) {
  147. _this[i] = ele;
  148. _this.length++;
  149. }, this);
  150. break;
  151. case 'object':
  152. if (selectors.length) {
  153. Array.from(selectors, function (ele, i) {
  154. _this[i] = ele;
  155. _this.length++;
  156. }, this);
  157. } else {
  158. this[0] = selectors;
  159. this.length = 1;
  160. }
  161. break;
  162. case 'function':
  163. this.ready(selectors);
  164. break;
  165. default:
  166.  
  167. }
  168. }
  169.  
  170. _createClass(jqLite, [{
  171. key: 'eq',
  172. value: function eq() {
  173. var n = arguments.length <= 0 || arguments[0] === undefined ? 0 : arguments[0];
  174.  
  175. return new jqLite(this[n]);
  176. }
  177. }, {
  178. key: 'find',
  179. value: function find(selectors) {
  180. return new jqLite(selectors, this[0]);
  181. }
  182. }, {
  183. key: 'each',
  184. value: function each() {
  185. var fn = arguments.length <= 0 || arguments[0] === undefined ? noop : arguments[0];
  186.  
  187. for (var i = 0; i < this.length; i++) {
  188. fn.call(this, this[i], i);
  189. }
  190. return this;
  191. }
  192. }, {
  193. key: 'bind',
  194. value: function bind() {
  195. var types = arguments.length <= 0 || arguments[0] === undefined ? '' : arguments[0];
  196. var fn = arguments.length <= 1 || arguments[1] === undefined ? noop : arguments[1];
  197.  
  198. this.each(function (ele) {
  199. types.trim().split(/\s{1,}/).forEach(function (type) {
  200. ele.addEventListener(type, function (e) {
  201. var target = e.target || e.srcElement;
  202. if (fn.call(target, e) === false) {
  203. e.returnValue = true;
  204. e.cancelBubble = true;
  205. e.preventDefault && e.preventDefault();
  206. e.stopPropagation && e.stopPropagation();
  207. return false;
  208. }
  209. }, false);
  210. });
  211. });
  212. }
  213. }, {
  214. key: 'click',
  215. value: function click() {
  216. var fn = arguments.length <= 0 || arguments[0] === undefined ? noop : arguments[0];
  217.  
  218. this.bind('click', fn);
  219. return this;
  220. }
  221. }, {
  222. key: 'ready',
  223. value: function ready() {
  224. var _this2 = this;
  225.  
  226. var fn = arguments.length <= 0 || arguments[0] === undefined ? noop : arguments[0];
  227.  
  228. window.addEventListener('DOMContentLoaded', function (e) {
  229. fn.call(_this2, e);
  230. }, false);
  231. }
  232. }, {
  233. key: 'observe',
  234. value: function observe() {
  235. var _this3 = this;
  236.  
  237. var fn = arguments.length <= 0 || arguments[0] === undefined ? noop : arguments[0];
  238. var config = arguments.length <= 1 || arguments[1] === undefined ? { childList: true, subtree: true } : arguments[1];
  239.  
  240. this.each(function (ele) {
  241. var MutationObserver = window.MutationObserver || window.WebKitMutationObserver || window.MozMutationObserver;
  242. var observer = new MutationObserver(function (mutations) {
  243. mutations.forEach(function (mutation) {
  244. fn.call(_this3, mutation.target, mutation.addedNodes, mutation.removedNodes);
  245. });
  246. });
  247. observer.observe(ele, config);
  248. });
  249. return this;
  250. }
  251. }, {
  252. key: 'attr',
  253. value: function (_attr) {
  254. function attr(_x, _x2) {
  255. return _attr.apply(this, arguments);
  256. }
  257.  
  258. attr.toString = function () {
  259. return _attr.toString();
  260. };
  261.  
  262. return attr;
  263. }(function (attr, value) {
  264. // one agm
  265. if (arguments.length === 1) {
  266. // get attr value
  267. if (typeof attr === 'string') {
  268. return this[0].getAttribute(attr);
  269. }
  270. // set attr with a json
  271. else if ((typeof attr === 'undefined' ? 'undefined' : _typeof(attr)) === 'object') {
  272. this.each(function (ele) {
  273. for (var at in attr) {
  274. if (attr.hasOwnProperty(at)) {
  275. ele.setAttribute(at, value);
  276. }
  277. }
  278. });
  279. return value;
  280. }
  281. }
  282. // set
  283. else if (arguments.length === 2) {
  284. this.each(function (ele) {
  285. ele.setAttribute(attr, value);
  286. });
  287. return this;
  288. } else {
  289. return this;
  290. }
  291. })
  292. }, {
  293. key: 'removeAttr',
  294. value: function removeAttr(attr) {
  295. if (arguments.length === 1) {
  296. this.each(function (ele) {
  297. ele.removeAttribute(attr);
  298. });
  299. }
  300. return this;
  301. }
  302. }, {
  303. key: 'remove',
  304. value: function remove() {
  305. this.each(function (ele) {
  306. ele.remove();
  307. });
  308. this.length = 0;
  309. return this;
  310. }
  311.  
  312. // get the element style
  313.  
  314. }, {
  315. key: 'style',
  316. value: function style(attr) {
  317. return this[0].currentStyle ? this[0].currentStyle[attr] : getComputedStyle(this[0])[attr];
  318. }
  319.  
  320. // (attr,value) || 'string' || {}
  321.  
  322. }, {
  323. key: 'css',
  324. value: function css() {
  325. for (var _len = arguments.length, agm = Array(_len), _key = 0; _key < _len; _key++) {
  326. agm[_key] = arguments[_key];
  327. }
  328.  
  329. if (agm.length === 1) {
  330. // get style
  331. if (typeof agm[0] === 'string') {
  332. // set style as a long text
  333. if (/:/ig.test(agm[0])) {
  334. this.each(function (ele) {
  335. ele.style.cssText = attr;
  336. });
  337. } else {
  338. return this[0].currentStyle ? this[0].currentStyle[agm[0]] : getComputedStyle(this[0])[agm[0]];
  339. }
  340. }
  341. // set style as a object
  342. else {
  343. this.each(function (ele) {
  344. for (var _attr2 in agm[0]) {
  345. if (agm[0].hasOwnProperty(_attr2)) {
  346. ele.style[_attr2] = agm[0][_attr2];
  347. }
  348. }
  349. });
  350. }
  351. }
  352. // set as (key,value)
  353. else if (agm.length === 2) {
  354. this.each(function (ele) {
  355. ele.style[agm[0]] = agm[1];
  356. });
  357. }
  358. return this;
  359. }
  360. }, {
  361. key: 'width',
  362. value: function width(value) {
  363. var element = this[0];
  364. // window or document
  365. if (element.window === element || element.body) {
  366. return document.body.scrollWidth > document.documentElement.scrollWidth ? document.body.scrollWidth : document.documentElement.scrollWidth;
  367. }
  368. // set width
  369. else if (value) {
  370. this.each(function (ele) {
  371. ele.style.width = value + 'px';
  372. });
  373. return this;
  374. }
  375. // get width
  376. else {
  377. return this[0].offsetWidth || parseFloat(this.style('width'));
  378. }
  379. }
  380. }, {
  381. key: 'height',
  382. value: function height(value) {
  383. var ele = this[0];
  384. // window or document
  385. if (ele.window === ele || ele.body) {
  386. return document.body.scrollHeight > document.documentElement.scrollHeight ? document.body.scrollHeight : document.documentElement.scrollHeight;
  387. }
  388. // set height
  389. else if (value) {
  390. this.each(function (ele) {
  391. ele.style.height = value + 'px';
  392. });
  393. return this;
  394. }
  395. // get height
  396. else {
  397. return this[0].offsetHeight || parseFloat(this.style('height'));
  398. }
  399. }
  400. }, {
  401. key: 'html',
  402. value: function html(value) {
  403. if (value !== undefined) {
  404. this.each(function (ele) {
  405. ele.innerHTML = typeof value === 'function' ? value(ele) : value;
  406. });
  407. } else {
  408. return this[0].innerHTML;
  409. }
  410. return this;
  411. }
  412. }, {
  413. key: 'text',
  414. value: function text(value) {
  415. if (value === undefined) return this[0].innerText || this[0].textContent;
  416.  
  417. this.each(function (ele) {
  418. ele.innerText = ele.textContent = value;
  419. });
  420. return this;
  421. }
  422. }, {
  423. key: 'val',
  424. value: function val(value) {
  425. if (value === undefined) return this[0].value;
  426. this.each(function (ele) {
  427. ele.value = value;
  428. });
  429. return this;
  430. }
  431. }, {
  432. key: 'show',
  433. value: function show() {
  434. this.each(function (ele) {
  435. ele.style.display = '';
  436. });
  437. return this;
  438. }
  439. }, {
  440. key: 'hide',
  441. value: function hide() {
  442. this.each(function (ele) {
  443. ele.style.display = 'none';
  444. });
  445. return this;
  446. }
  447.  
  448. // content str || jqLite Object || DOM
  449. // here is jqLite Object
  450.  
  451. }, {
  452. key: 'append',
  453. value: function append(content) {
  454. this.each(function (ele) {
  455. ele.appendChild(content[0]);
  456. });
  457. return this;
  458. }
  459. }, {
  460. key: 'prepend',
  461.  
  462.  
  463. // content str || jqLite Object || DOM
  464. // here is jqLite Object
  465. value: function prepend(content) {
  466. this.each(function (ele) {
  467. ele.insertBefore(content[0], ele.children[0]);
  468. });
  469. return this;
  470. }
  471. }, {
  472. key: 'hasClass',
  473. value: function hasClass(className) {
  474. if (!this[0]) return false;
  475. return this[0].classList.contains(className);
  476. }
  477. }, {
  478. key: 'addClass',
  479. value: function addClass(className) {
  480. this.each(function (ele) {
  481. ele.classList.add(className);
  482. });
  483. return this;
  484. }
  485. }, {
  486. key: 'removeClass',
  487. value: function removeClass(className) {
  488. this.each(function (ele) {
  489. ele.classList.remove(className);
  490. });
  491. return this;
  492. }
  493. }, {
  494. key: 'index',
  495. get: function get() {
  496. var index = 0;
  497. var brothers = this[0].parentNode.children;
  498. for (var i = 0; i < brothers.length; i++) {
  499. if (brothers[i] == this[0]) {
  500. index = i;
  501. break;
  502. }
  503. }
  504. return index;
  505. }
  506. }], [{
  507. key: 'fn',
  508. get: function get() {
  509. var visible = function visible(ele) {
  510. var pos = ele.getBoundingClientRect();
  511. var w = void 0;
  512. var h = void 0;
  513. var inViewPort = void 0;
  514. var docEle = document.documentElement;
  515. var docBody = document.body;
  516. if (docEle.getBoundingClientRect) {
  517. w = docEle.clientWidth || docBody.clientWidth;
  518. h = docEle.clientHeight || docBody.clientHeight;
  519. inViewPort = pos.top > h || pos.bottom < 0 || pos.left > w || pos.right < 0;
  520. return inViewPort ? false : true;
  521. }
  522. };
  523. var merge = function merge() {
  524. for (var _len2 = arguments.length, sources = Array(_len2), _key2 = 0; _key2 < _len2; _key2++) {
  525. sources[_key2] = arguments[_key2];
  526. }
  527.  
  528. return Object.assign.apply(Object, [{}].concat(sources));
  529. };
  530. return {
  531. visible: visible,
  532. merge: merge
  533. };
  534. }
  535. }]);
  536.  
  537. return jqLite;
  538. }();
  539.  
  540. var $ = function $() {
  541. var selectors = arguments.length <= 0 || arguments[0] === undefined ? '' : arguments[0];
  542. var context = arguments.length <= 1 || arguments[1] === undefined ? document : arguments[1];
  543.  
  544. return new jqLite(selectors, context);
  545. };
  546. $.fn = jqLite.fn;
  547.  
  548. exports.default = $;
  549.  
  550. /***/ },
  551. /* 2 */
  552. /***/ function(module, exports, __webpack_require__) {
  553.  
  554. 'use strict';
  555. var ctx = __webpack_require__(3)
  556. , $export = __webpack_require__(5)
  557. , toObject = __webpack_require__(15)
  558. , call = __webpack_require__(17)
  559. , isArrayIter = __webpack_require__(20)
  560. , toLength = __webpack_require__(24)
  561. , getIterFn = __webpack_require__(26);
  562. $export($export.S + $export.F * !__webpack_require__(29)(function(iter){ Array.from(iter); }), 'Array', {
  563. // 22.1.2.1 Array.from(arrayLike, mapfn = undefined, thisArg = undefined)
  564. from: function from(arrayLike/*, mapfn = undefined, thisArg = undefined*/){
  565. var O = toObject(arrayLike)
  566. , C = typeof this == 'function' ? this : Array
  567. , $$ = arguments
  568. , $$len = $$.length
  569. , mapfn = $$len > 1 ? $$[1] : undefined
  570. , mapping = mapfn !== undefined
  571. , index = 0
  572. , iterFn = getIterFn(O)
  573. , length, result, step, iterator;
  574. if(mapping)mapfn = ctx(mapfn, $$len > 2 ? $$[2] : undefined, 2);
  575. // if object isn't iterable or it's array with default iterator - use simple case
  576. if(iterFn != undefined && !(C == Array && isArrayIter(iterFn))){
  577. for(iterator = iterFn.call(O), result = new C; !(step = iterator.next()).done; index++){
  578. result[index] = mapping ? call(iterator, mapfn, [step.value, index], true) : step.value;
  579. }
  580. } else {
  581. length = toLength(O.length);
  582. for(result = new C(length); length > index; index++){
  583. result[index] = mapping ? mapfn(O[index], index) : O[index];
  584. }
  585. }
  586. result.length = index;
  587. return result;
  588. }
  589. });
  590.  
  591.  
  592. /***/ },
  593. /* 3 */
  594. /***/ function(module, exports, __webpack_require__) {
  595.  
  596. // optional / simple context binding
  597. var aFunction = __webpack_require__(4);
  598. module.exports = function(fn, that, length){
  599. aFunction(fn);
  600. if(that === undefined)return fn;
  601. switch(length){
  602. case 1: return function(a){
  603. return fn.call(that, a);
  604. };
  605. case 2: return function(a, b){
  606. return fn.call(that, a, b);
  607. };
  608. case 3: return function(a, b, c){
  609. return fn.call(that, a, b, c);
  610. };
  611. }
  612. return function(/* ...args */){
  613. return fn.apply(that, arguments);
  614. };
  615. };
  616.  
  617. /***/ },
  618. /* 4 */
  619. /***/ function(module, exports) {
  620.  
  621. module.exports = function(it){
  622. if(typeof it != 'function')throw TypeError(it + ' is not a function!');
  623. return it;
  624. };
  625.  
  626. /***/ },
  627. /* 5 */
  628. /***/ function(module, exports, __webpack_require__) {
  629.  
  630. var global = __webpack_require__(6)
  631. , core = __webpack_require__(7)
  632. , hide = __webpack_require__(8)
  633. , redefine = __webpack_require__(13)
  634. , ctx = __webpack_require__(3)
  635. , PROTOTYPE = 'prototype';
  636.  
  637. var $export = function(type, name, source){
  638. var IS_FORCED = type & $export.F
  639. , IS_GLOBAL = type & $export.G
  640. , IS_STATIC = type & $export.S
  641. , IS_PROTO = type & $export.P
  642. , IS_BIND = type & $export.B
  643. , target = IS_GLOBAL ? global : IS_STATIC ? global[name] || (global[name] = {}) : (global[name] || {})[PROTOTYPE]
  644. , exports = IS_GLOBAL ? core : core[name] || (core[name] = {})
  645. , expProto = exports[PROTOTYPE] || (exports[PROTOTYPE] = {})
  646. , key, own, out, exp;
  647. if(IS_GLOBAL)source = name;
  648. for(key in source){
  649. // contains in native
  650. own = !IS_FORCED && target && key in target;
  651. // export native or passed
  652. out = (own ? target : source)[key];
  653. // bind timers to global for call from export context
  654. exp = IS_BIND && own ? ctx(out, global) : IS_PROTO && typeof out == 'function' ? ctx(Function.call, out) : out;
  655. // extend global
  656. if(target && !own)redefine(target, key, out);
  657. // export
  658. if(exports[key] != out)hide(exports, key, exp);
  659. if(IS_PROTO && expProto[key] != out)expProto[key] = out;
  660. }
  661. };
  662. global.core = core;
  663. // type bitmap
  664. $export.F = 1; // forced
  665. $export.G = 2; // global
  666. $export.S = 4; // static
  667. $export.P = 8; // proto
  668. $export.B = 16; // bind
  669. $export.W = 32; // wrap
  670. module.exports = $export;
  671.  
  672. /***/ },
  673. /* 6 */
  674. /***/ function(module, exports) {
  675.  
  676. // https://github.com/zloirock/core-js/issues/86#issuecomment-115759028
  677. var global = module.exports = typeof window != 'undefined' && window.Math == Math
  678. ? window : typeof self != 'undefined' && self.Math == Math ? self : Function('return this')();
  679. if(typeof __g == 'number')__g = global; // eslint-disable-line no-undef
  680.  
  681. /***/ },
  682. /* 7 */
  683. /***/ function(module, exports) {
  684.  
  685. var core = module.exports = {version: '1.2.6'};
  686. if(typeof __e == 'number')__e = core; // eslint-disable-line no-undef
  687.  
  688. /***/ },
  689. /* 8 */
  690. /***/ function(module, exports, __webpack_require__) {
  691.  
  692. var $ = __webpack_require__(9)
  693. , createDesc = __webpack_require__(10);
  694. module.exports = __webpack_require__(11) ? function(object, key, value){
  695. return $.setDesc(object, key, createDesc(1, value));
  696. } : function(object, key, value){
  697. object[key] = value;
  698. return object;
  699. };
  700.  
  701. /***/ },
  702. /* 9 */
  703. /***/ function(module, exports) {
  704.  
  705. var $Object = Object;
  706. module.exports = {
  707. create: $Object.create,
  708. getProto: $Object.getPrototypeOf,
  709. isEnum: {}.propertyIsEnumerable,
  710. getDesc: $Object.getOwnPropertyDescriptor,
  711. setDesc: $Object.defineProperty,
  712. setDescs: $Object.defineProperties,
  713. getKeys: $Object.keys,
  714. getNames: $Object.getOwnPropertyNames,
  715. getSymbols: $Object.getOwnPropertySymbols,
  716. each: [].forEach
  717. };
  718.  
  719. /***/ },
  720. /* 10 */
  721. /***/ function(module, exports) {
  722.  
  723. module.exports = function(bitmap, value){
  724. return {
  725. enumerable : !(bitmap & 1),
  726. configurable: !(bitmap & 2),
  727. writable : !(bitmap & 4),
  728. value : value
  729. };
  730. };
  731.  
  732. /***/ },
  733. /* 11 */
  734. /***/ function(module, exports, __webpack_require__) {
  735.  
  736. // Thank's IE8 for his funny defineProperty
  737. module.exports = !__webpack_require__(12)(function(){
  738. return Object.defineProperty({}, 'a', {get: function(){ return 7; }}).a != 7;
  739. });
  740.  
  741. /***/ },
  742. /* 12 */
  743. /***/ function(module, exports) {
  744.  
  745. module.exports = function(exec){
  746. try {
  747. return !!exec();
  748. } catch(e){
  749. return true;
  750. }
  751. };
  752.  
  753. /***/ },
  754. /* 13 */
  755. /***/ function(module, exports, __webpack_require__) {
  756.  
  757. // add fake Function#toString
  758. // for correct work wrapped methods / constructors with methods like LoDash isNative
  759. var global = __webpack_require__(6)
  760. , hide = __webpack_require__(8)
  761. , SRC = __webpack_require__(14)('src')
  762. , TO_STRING = 'toString'
  763. , $toString = Function[TO_STRING]
  764. , TPL = ('' + $toString).split(TO_STRING);
  765.  
  766. __webpack_require__(7).inspectSource = function(it){
  767. return $toString.call(it);
  768. };
  769.  
  770. (module.exports = function(O, key, val, safe){
  771. if(typeof val == 'function'){
  772. val.hasOwnProperty(SRC) || hide(val, SRC, O[key] ? '' + O[key] : TPL.join(String(key)));
  773. val.hasOwnProperty('name') || hide(val, 'name', key);
  774. }
  775. if(O === global){
  776. O[key] = val;
  777. } else {
  778. if(!safe)delete O[key];
  779. hide(O, key, val);
  780. }
  781. })(Function.prototype, TO_STRING, function toString(){
  782. return typeof this == 'function' && this[SRC] || $toString.call(this);
  783. });
  784.  
  785. /***/ },
  786. /* 14 */
  787. /***/ function(module, exports) {
  788.  
  789. var id = 0
  790. , px = Math.random();
  791. module.exports = function(key){
  792. return 'Symbol('.concat(key === undefined ? '' : key, ')_', (++id + px).toString(36));
  793. };
  794.  
  795. /***/ },
  796. /* 15 */
  797. /***/ function(module, exports, __webpack_require__) {
  798.  
  799. // 7.1.13 ToObject(argument)
  800. var defined = __webpack_require__(16);
  801. module.exports = function(it){
  802. return Object(defined(it));
  803. };
  804.  
  805. /***/ },
  806. /* 16 */
  807. /***/ function(module, exports) {
  808.  
  809. // 7.2.1 RequireObjectCoercible(argument)
  810. module.exports = function(it){
  811. if(it == undefined)throw TypeError("Can't call method on " + it);
  812. return it;
  813. };
  814.  
  815. /***/ },
  816. /* 17 */
  817. /***/ function(module, exports, __webpack_require__) {
  818.  
  819. // call something on iterator step with safe closing on error
  820. var anObject = __webpack_require__(18);
  821. module.exports = function(iterator, fn, value, entries){
  822. try {
  823. return entries ? fn(anObject(value)[0], value[1]) : fn(value);
  824. // 7.4.6 IteratorClose(iterator, completion)
  825. } catch(e){
  826. var ret = iterator['return'];
  827. if(ret !== undefined)anObject(ret.call(iterator));
  828. throw e;
  829. }
  830. };
  831.  
  832. /***/ },
  833. /* 18 */
  834. /***/ function(module, exports, __webpack_require__) {
  835.  
  836. var isObject = __webpack_require__(19);
  837. module.exports = function(it){
  838. if(!isObject(it))throw TypeError(it + ' is not an object!');
  839. return it;
  840. };
  841.  
  842. /***/ },
  843. /* 19 */
  844. /***/ function(module, exports) {
  845.  
  846. module.exports = function(it){
  847. return typeof it === 'object' ? it !== null : typeof it === 'function';
  848. };
  849.  
  850. /***/ },
  851. /* 20 */
  852. /***/ function(module, exports, __webpack_require__) {
  853.  
  854. // check on default Array iterator
  855. var Iterators = __webpack_require__(21)
  856. , ITERATOR = __webpack_require__(22)('iterator')
  857. , ArrayProto = Array.prototype;
  858.  
  859. module.exports = function(it){
  860. return it !== undefined && (Iterators.Array === it || ArrayProto[ITERATOR] === it);
  861. };
  862.  
  863. /***/ },
  864. /* 21 */
  865. /***/ function(module, exports) {
  866.  
  867. module.exports = {};
  868.  
  869. /***/ },
  870. /* 22 */
  871. /***/ function(module, exports, __webpack_require__) {
  872.  
  873. var store = __webpack_require__(23)('wks')
  874. , uid = __webpack_require__(14)
  875. , Symbol = __webpack_require__(6).Symbol;
  876. module.exports = function(name){
  877. return store[name] || (store[name] =
  878. Symbol && Symbol[name] || (Symbol || uid)('Symbol.' + name));
  879. };
  880.  
  881. /***/ },
  882. /* 23 */
  883. /***/ function(module, exports, __webpack_require__) {
  884.  
  885. var global = __webpack_require__(6)
  886. , SHARED = '__core-js_shared__'
  887. , store = global[SHARED] || (global[SHARED] = {});
  888. module.exports = function(key){
  889. return store[key] || (store[key] = {});
  890. };
  891.  
  892. /***/ },
  893. /* 24 */
  894. /***/ function(module, exports, __webpack_require__) {
  895.  
  896. // 7.1.15 ToLength
  897. var toInteger = __webpack_require__(25)
  898. , min = Math.min;
  899. module.exports = function(it){
  900. return it > 0 ? min(toInteger(it), 0x1fffffffffffff) : 0; // pow(2, 53) - 1 == 9007199254740991
  901. };
  902.  
  903. /***/ },
  904. /* 25 */
  905. /***/ function(module, exports) {
  906.  
  907. // 7.1.4 ToInteger
  908. var ceil = Math.ceil
  909. , floor = Math.floor;
  910. module.exports = function(it){
  911. return isNaN(it = +it) ? 0 : (it > 0 ? floor : ceil)(it);
  912. };
  913.  
  914. /***/ },
  915. /* 26 */
  916. /***/ function(module, exports, __webpack_require__) {
  917.  
  918. var classof = __webpack_require__(27)
  919. , ITERATOR = __webpack_require__(22)('iterator')
  920. , Iterators = __webpack_require__(21);
  921. module.exports = __webpack_require__(7).getIteratorMethod = function(it){
  922. if(it != undefined)return it[ITERATOR]
  923. || it['@@iterator']
  924. || Iterators[classof(it)];
  925. };
  926.  
  927. /***/ },
  928. /* 27 */
  929. /***/ function(module, exports, __webpack_require__) {
  930.  
  931. // getting tag from 19.1.3.6 Object.prototype.toString()
  932. var cof = __webpack_require__(28)
  933. , TAG = __webpack_require__(22)('toStringTag')
  934. // ES3 wrong here
  935. , ARG = cof(function(){ return arguments; }()) == 'Arguments';
  936.  
  937. module.exports = function(it){
  938. var O, T, B;
  939. return it === undefined ? 'Undefined' : it === null ? 'Null'
  940. // @@toStringTag case
  941. : typeof (T = (O = Object(it))[TAG]) == 'string' ? T
  942. // builtinTag case
  943. : ARG ? cof(O)
  944. // ES3 arguments fallback
  945. : (B = cof(O)) == 'Object' && typeof O.callee == 'function' ? 'Arguments' : B;
  946. };
  947.  
  948. /***/ },
  949. /* 28 */
  950. /***/ function(module, exports) {
  951.  
  952. var toString = {}.toString;
  953.  
  954. module.exports = function(it){
  955. return toString.call(it).slice(8, -1);
  956. };
  957.  
  958. /***/ },
  959. /* 29 */
  960. /***/ function(module, exports, __webpack_require__) {
  961.  
  962. var ITERATOR = __webpack_require__(22)('iterator')
  963. , SAFE_CLOSING = false;
  964.  
  965. try {
  966. var riter = [7][ITERATOR]();
  967. riter['return'] = function(){ SAFE_CLOSING = true; };
  968. Array.from(riter, function(){ throw 2; });
  969. } catch(e){ /* empty */ }
  970.  
  971. module.exports = function(exec, skipClosing){
  972. if(!skipClosing && !SAFE_CLOSING)return false;
  973. var safe = false;
  974. try {
  975. var arr = [7]
  976. , iter = arr[ITERATOR]();
  977. iter.next = function(){ safe = true; };
  978. arr[ITERATOR] = function(){ return iter; };
  979. exec(arr);
  980. } catch(e){ /* empty */ }
  981. return safe;
  982. };
  983.  
  984. /***/ },
  985. /* 30 */
  986. /***/ function(module, exports, __webpack_require__) {
  987.  
  988. // 19.1.3.1 Object.assign(target, source)
  989. var $export = __webpack_require__(5);
  990.  
  991. $export($export.S + $export.F, 'Object', {assign: __webpack_require__(31)});
  992.  
  993. /***/ },
  994. /* 31 */
  995. /***/ function(module, exports, __webpack_require__) {
  996.  
  997. // 19.1.2.1 Object.assign(target, source, ...)
  998. var $ = __webpack_require__(9)
  999. , toObject = __webpack_require__(15)
  1000. , IObject = __webpack_require__(32);
  1001.  
  1002. // should work with symbols and should have deterministic property order (V8 bug)
  1003. module.exports = __webpack_require__(12)(function(){
  1004. var a = Object.assign
  1005. , A = {}
  1006. , B = {}
  1007. , S = Symbol()
  1008. , K = 'abcdefghijklmnopqrst';
  1009. A[S] = 7;
  1010. K.split('').forEach(function(k){ B[k] = k; });
  1011. return a({}, A)[S] != 7 || Object.keys(a({}, B)).join('') != K;
  1012. }) ? function assign(target, source){ // eslint-disable-line no-unused-vars
  1013. var T = toObject(target)
  1014. , $$ = arguments
  1015. , $$len = $$.length
  1016. , index = 1
  1017. , getKeys = $.getKeys
  1018. , getSymbols = $.getSymbols
  1019. , isEnum = $.isEnum;
  1020. while($$len > index){
  1021. var S = IObject($$[index++])
  1022. , keys = getSymbols ? getKeys(S).concat(getSymbols(S)) : getKeys(S)
  1023. , length = keys.length
  1024. , j = 0
  1025. , key;
  1026. while(length > j)if(isEnum.call(S, key = keys[j++]))T[key] = S[key];
  1027. }
  1028. return T;
  1029. } : Object.assign;
  1030.  
  1031. /***/ },
  1032. /* 32 */
  1033. /***/ function(module, exports, __webpack_require__) {
  1034.  
  1035. // fallback for non-array-like ES3 and non-enumerable old V8 strings
  1036. var cof = __webpack_require__(28);
  1037. module.exports = Object('z').propertyIsEnumerable(0) ? Object : function(it){
  1038. return cof(it) == 'String' ? it.split('') : Object(it);
  1039. };
  1040.  
  1041. /***/ },
  1042. /* 33 */,
  1043. /* 34 */,
  1044. /* 35 */,
  1045. /* 36 */,
  1046. /* 37 */,
  1047. /* 38 */,
  1048. /* 39 */,
  1049. /* 40 */,
  1050. /* 41 */,
  1051. /* 42 */,
  1052. /* 43 */,
  1053. /* 44 */,
  1054. /* 45 */,
  1055. /* 46 */,
  1056. /* 47 */,
  1057. /* 48 */,
  1058. /* 49 */,
  1059. /* 50 */,
  1060. /* 51 */,
  1061. /* 52 */,
  1062. /* 53 */,
  1063. /* 54 */,
  1064. /* 55 */
  1065. /***/ function(module, exports) {
  1066.  
  1067. "use strict";
  1068.  
  1069. Object.defineProperty(exports, "__esModule", {
  1070. value: true
  1071. });
  1072. var $interval = function $interval(fn, delay) {
  1073. var interval = function interval() {
  1074. fn.call(undefined);
  1075. id = setTimeout(interval, delay);
  1076. };
  1077.  
  1078. var id = setTimeout(interval, delay);
  1079.  
  1080. return function () {
  1081. window.clearTimeout(id);
  1082. };
  1083. };
  1084.  
  1085. $interval.cancel = function (timerFunc) {
  1086. timerFunc();
  1087. };
  1088.  
  1089. exports.default = $interval;
  1090.  
  1091. /***/ },
  1092. /* 56 */
  1093. /***/ function(module, exports, __webpack_require__) {
  1094.  
  1095. 'use strict';
  1096.  
  1097. Object.defineProperty(exports, "__esModule", {
  1098. value: true
  1099. });
  1100.  
  1101. var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();
  1102.  
  1103. var _jqLite = __webpack_require__(1);
  1104.  
  1105. var _jqLite2 = _interopRequireDefault(_jqLite);
  1106.  
  1107. var _config = __webpack_require__(57);
  1108.  
  1109. var _config2 = _interopRequireDefault(_config);
  1110.  
  1111. function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
  1112.  
  1113. function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
  1114.  
  1115. var Main = function () {
  1116. function Main() {
  1117. var rules = arguments.length <= 0 || arguments[0] === undefined ? _config2.default.rules : arguments[0];
  1118.  
  1119. _classCallCheck(this, Main);
  1120.  
  1121. this.ads = (0, _jqLite2.default)(rules);
  1122. this.length = this.ads.length;
  1123. }
  1124.  
  1125. _createClass(Main, [{
  1126. key: 'filter',
  1127. value: function filter() {
  1128. this.ads.each(function (ele, i) {
  1129. ele.style.cssText = '\n display:none !important;\n visibility:hidden !important;\n width:0 !important;\n height:0 !important;\n overflow:hidden !important;\n // background-color:red !important;\n // border:1px solid red;\n ';
  1130. ele.setAttribute('filtered', '');
  1131. });
  1132. return this;
  1133. }
  1134. }, {
  1135. key: 'turn',
  1136. value: function turn() {
  1137. (0, _jqLite2.default)('#content_left input[type=checkbox]:not(filtered)').each(function (ele) {
  1138. ele.checked = false;
  1139. ele.setAttribute('filtered', '');
  1140. });
  1141. return this;
  1142. }
  1143. }]);
  1144.  
  1145. return Main;
  1146. }();
  1147.  
  1148. exports.default = Main;
  1149.  
  1150. /***/ },
  1151. /* 57 */
  1152. /***/ function(module, exports) {
  1153.  
  1154. 'use strict';
  1155.  
  1156. Object.defineProperty(exports, "__esModule", {
  1157. value: true
  1158. });
  1159. var CONFIG = {
  1160. rules: '\n #content_left>div\n :not([class*=result])\n :not([class*=container])\n :not(.leftBlock)\n :not(#rs_top_new)\n :not([filtered])\n ,\n #content_left>table\n :not(.result)\n :not([filtered])\n ,\n #content_right>table td\n div#ec_im_container\n ,\n div.s-news-list-wrapper>div\n :not([data-relatewords*="1"])\n ,\n div.list-wraper dl[data-oad]\n :not([data-fb])\n :not([filtered])\n '.trim().replace(/\n/img, '').replace(/\s{1,}([^a-zA-Z])/g, '$1')
  1161. };
  1162.  
  1163. exports.default = CONFIG;
  1164.  
  1165. /***/ }
  1166. /******/ ]);

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址