您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
自动将移动端链接跳转为电脑端访问的网页
// ==UserScript== // @name 移动端链接跳电脑端 // @description 自动将移动端链接跳转为电脑端访问的网页 // @namespace https://github.com/popring/tampermonkey-m2pc // @version 2025-02-17/v2 // @author popring // @match https://m.huxiu.com/* // @match https://m.thepaper.cn/* // @icon https://www.google.com/s2/favicons?sz=64&domain=huxiu.com // @grant none // @license MIT // ==/UserScript== var main = (function (devMode) { 'use strict'; var map = { 'm.huxiu.com': 'www.huxiu.com', 'm.thepaper.cn': (originURL) => { var url = new URL(originURL); if (url.pathname.startsWith('/kuaibao_detail.jsp')) { var contid = url.searchParams.get('contid'); return `https://www.thepaper.cn/newsDetail_forward_${contid}?${url.searchParams.toString()}`; } return originURL.replace('m.thepaper.cn', 'www.thepaper.cn'); }, }; // 格式化控制台打印 var log = (message) => { console.log( '%c M2PC %c ' + message, 'background: #2c3e50; color: #fff; border-radius: 3px 0 0 3px; padding: 1px 2px; font-weight: bold', 'background: #ecf0f1; color: #2c3e50; border-radius: 0 3px 3px 0; padding: 1px 2px' ); }; // 检测是否为移动设备 var isMobile = () => { return /Android|webOS|iPhone|iPad|iPod|BlackBerry|Opera Mini/i.test( navigator.userAgent ); }; var convertLink = (originURL) => { var host = new URL(originURL).host; if (typeof map[host] === 'function') { return map[host](originURL); } if (typeof map[host] === 'string') { return originURL.replace(host, map[host]); } return originURL; }; var redirect = (key) => { // 如果是移动设备,直接返回不跳转 if (isMobile()) { log('检测到移动设备,不进行跳转'); return; } var newLink = convertLink(window.location.href); window.location.href = newLink; }; var bootstrap = () => { const newLink = convertLink(window.location.href); if (newLink !== window.location.href) { window.location.href = newLink; } }; if (!devMode) { bootstrap(); return; } return convertLink; }); if (typeof module !== 'undefined' && module.exports) { module.exports = main; } else { main(window.__M2PC_DEV_MODE__); }
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址