IGG-Games Skiper

Skip wating AD page in IGG games download link

目前為 2016-05-19 提交的版本,檢視 最新版本

// ==UserScript==
// @name         IGG-Games Skiper
// @namespace    https://github.com/kerol2r20
// @version      0.1
// @description  Skip wating AD page in IGG games download link
// @author       Yu-Hsin Lu
// @include      http://igg-games.com/*
// @grant        none
// @require      https://ajax.googleapis.com/ajax/libs/jquery/2.2.3/jquery.min.js
// @grant       unsafeWindow
// ==/UserScript==

(function() {
    'use strict';
    var pat = /.*xurl=(s?:.*)/i;
    $("a").each(function() {
        var url=$(this).attr('href');
        var xx = decodeURIComponent(url);
        var result = pat.exec(xx);
        if(result!==null){
            $(this).attr('href','http'+result[1]);
        }
    });
})();