Greasy Fork

Etsy short URL

Replaces long url by short url.

目前为 2018-12-07 提交的版本。查看 最新版本

// ==UserScript==
// @name         Etsy short URL
// @namespace    graphen
// @version      1.1.0
// @description  Replaces long url by short url.
// @author       graphen
// @include      https://www.etsy.com/*
// @run-at       document-end
// @icon         https://www.etsy.com/images/favicon.ico
// @grant        none
// @license      MIT
// ==/UserScript==

/* jshint esversion: 6 */
(function(){
    'use strict';

    var itemId = document.getElementById("listing-image").getAttribute("data-palette-listing-id");

    if(itemId) {
        history.replaceState(null, 'Shortened Etsy URL', "https://www.etsy.com/listing/" + itemId);
    }

})();