Yupoo to HTTPS converter

Auto Redirect from non HTTP to HTTPS

目前为 2019-07-20 提交的版本。查看 最新版本

// ==UserScript==
// @name         Yupoo to HTTPS converter
// @namespace    http://tampermonkey.net/
// @version      0.2
// @description  Auto Redirect from non HTTP to HTTPS
// @author       RobotOilInc
// @match        http://*.x.yupoo.com/albums*

// @run-at  document-start
// @icon	https://s.yupoo.com/website/4.7.6/favicon.ico
// ==/UserScript==

window.location.href = window.location.href.replace('http://', 'https://');