Greasy Fork镜像 支持简体中文。

Smiledirect

Redirects any URL starting with www.amazon.de to smile.amazon.de

目前為 2019-05-12 提交的版本,檢視 最新版本

// ==UserScript==
// @name         Smiledirect
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  Redirects any URL starting with www.amazon.de to smile.amazon.de
// @author       Me
// @match        https://www.amazon.de/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    var smile = "https://smile"
    //Get URL
	var url = window.location.href
    //Removes https://www
    var short_url = url.slice(11)
    //Joins smile and short_url
    var smile_url = smile.concat(short_url)
    //Reload new url
    window.location.replace(smile_url)
})();

QingJ © 2025

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