view pixiv-direct-external-link.user.js @ 85:9c8cde985caf

Update standard and fix
author nanaya <me@nanaya.pro>
date Thu, 15 Apr 2021 15:01:22 +0900
parents 86da34e62d29
children 2c4470b73ad9
line wrap: on
line source

// ==UserScript==
// @name         pixiv direct external link
// @namespace    https://myconan.net
// @version      1.1.5
// @description  Make proper link on pixiv pages
// @author       nanaya
// @match        http://www.pixiv.net/*
// @grant        none
// @downloadURL  https://hg.myconan.net/ec-userscripts/raw-file/tip/pixiv-direct-external-link.user.js
// ==/UserScript==

/* global $ */
;(function () {
  'use strict'

  const fixLink = function (_i, el) {
    const $el = $(el)
    const url = decodeURIComponent($el.attr('href').replace(/^\/?jump.php\?/, ''))

    $el.attr('href', url)
  }

  $("[href^='jump.php?']").each(fixLink)
  $("[href^='/jump.php?']").each(fixLink)
}).call()