Auto redirect

手機版、電腦版網頁自動跳轉

目前為 2021-08-11 提交的版本,檢視 最新版本

// ==UserScript==
// @name             Auto redirect
// @description      手機版、電腦版網頁自動跳轉
// @namespace        7ED70DC0-CD34-11E7-8C84-6590899BC43F
// @include          https://m.gamer.com.tw/*
// @include          https://m.facebook.com/*
// @include          https://m.591.com.tw/v2/rent/*
// @include          https://m.cosdna.com/*
// @include          https://m.momoshop.com.tw/*
// @version          1.2.1
// @grant            none
// ==/UserScript==


switch (location.hostname) {
  // 巴哈 mobile
  case 'm.gamer.com.tw':
    document.querySelector('.gtm-nav-backpc').click()
    break
    
  // FB moblie
  case 'm.facebook.com':
    if (location.pathname === '/story.php') {
      location.href = 'https://www.facebook.com/' + location.search.match(/[?&]id=([^&]+)/)[1] + '/posts/' + location.search.match(/[?&]story_fbid=([^&]+)/)[1]
    } else {
      location.href = 'https://www' + location.href.slice(9)
    }
    break
    
  // 591手機版
  case 'm.591.com.tw':
    location.href = 'https://rent.591.com.tw/rent-detail-' + location.pathname.split('/').pop().match(/\d+/)[0] + '.html'
    break

  // CosDNA
  case 'm.cosdna.com':
    location.href = location.href.replace('//m.', '//')
    break

  // momo 購物網  https://m.momoshop.com.tw/goods.momo?i_code=7502072
  case 'm.momoshop.com.tw':
    location.href = 'https://www.momoshop.com.tw/goods/GoodsDetail.jsp' + location.search
    break
}

QingJ © 2025

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