Greasy Fork

Greasy Fork is available in English.

巨量百应平台达人详情

巨量百应平台达人跳转查看带货详情

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Greasemonkey 油猴子Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Userscripts ,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

// ==UserScript==
// @name         巨量百应平台达人详情
// @namespace    https://buyin.jinritemai.com/
// @version      0.2
// @description  巨量百应平台达人跳转查看带货详情
// @author       骄阳
// @include        https://buyin.jinritemai.com/dashboard/followed-daren*
// @include        http://buyin.jinritemai.com/dashboard/followed-daren*
// @exclude      https://buyin.jinritemai.com/dashboard/servicehall/daren-profile*
// @license MIT
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    function redirecturl(){
        var url0 = window.location.href;
        console.log("跳转...");
        var reg = new RegExp('(^|&)' + 'uid' + '=([^&]*)(&|$)', 'i');
        var r = window.location.search.substr(1).match(reg);
        var uid=unescape(r[2]);
        window.location.href='https://buyin.jinritemai.com/dashboard/servicehall/daren-profile?uid='+uid;
    };
    redirecturl();
})();