Greasy Fork

Greasy Fork is available in English.

苏宁手机页面跳转

苏宁手机页面跳转到pc页面

目前为 2018-06-07 提交的版本,查看 最新版本

// ==UserScript==
// @name         苏宁手机页面跳转
// @namespace    http://tampermonkey.net/
// @description  苏宁手机页面跳转到pc页面
// @author       kjl
// @include      *//m.suning.com/*
// @version      0.2
// @grant        none
// @run-at      document-start
// ==/UserScript==

(function() {
    'use strict';
    //直接打开pc端页面
    var inputurl=location.href;
    var url=["https://product.suning.com/0000000000/"]+inputurl.toString().match(/\d+.html/g);
    location.assign(url);
})();