DMM 增强

DMM

K instalaci tototo skriptu si budete muset nainstalovat rozšíření jako Tampermonkey, Greasemonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Userscripts.

You will need to install an extension such as Tampermonkey to install this script.

K instalaci tohoto skriptu si budete muset nainstalovat manažer uživatelských skriptů.

(Už mám manažer uživatelských skriptů, nechte mě ho nainstalovat!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(Už mám manažer uživatelských stylů, nechte mě ho nainstalovat!)

// ==UserScript==
// @name         DMM 增强
// @namespace    http://tampermonkey.net/
// @version      0.2.0
// @author       targetlock
// @description  DMM
// @match        *://www.dmm.co.jp/*
// @grant        none
// ==/UserScript==

(function() {
  'use strict'

  addNextAndPrevButton()
  keyboardShourtcut();

  function keyboardShourtcut() {
    document.addEventListener('keyup', e => {
      if (e.code === 'Period' && !e.ctrlKey && e.shiftKey && !e.metaKey) {
          document.querySelector('#nextCidButton').click()
      }
      if (e.code === 'Comma' && !e.ctrlKey && e.shiftKey && !e.metaKey) {
          document.querySelector('#prevCidButton').click()
      }
    })
  }

  function addNextAndPrevButton() {
    const header = document.querySelector('.hreview')
    const cid = getCid()
    if (header && cid) {
       const nextCid = getNextCid(cid)
       const nextHref = location.href.replace(/\/cid=(\w+)\//, `/cid=${nextCid}/`)
       header.insertAdjacentHTML('beforeend', `<a id="nextCidButton" href="${nextHref}" style="float: right; margin: 0 0 0 20px">${nextCid}</a>`)

       const prevCid = getPrevCid(cid)
       const prevHref = location.href.replace(/\/cid=(\w+)\//, `/cid=${prevCid}/`)
       header.insertAdjacentHTML('beforeend', `<a id="prevCidButton" href="${prevHref}" style="float: right; margin: 0 0 0 20px">${prevCid}</a>`)
    }
  }

  function getCid() {
    const result = /\/cid=(\w+)\//.exec(location.href)
    return result ? result[1] : null
  }

  function getPrevCid(cid) {
    const re = /(\d+)(\D*)$/
    const result = re.exec(cid)
    const number = result[1]
    const suffix = result[2]
    return cid.replace(re, parseInt(number) - 1) + suffix
  }

  function getNextCid(cid) {
    const re = /(\d+)(\D*)$/
    const result = re.exec(cid)
    console.log(result)
    const number = result[1]
    const suffix = result[2]
    return cid.replace(re, parseInt(number) + 1) + suffix
  }
})();