DMM 增强

DMM

スクリプトをインストールするには、Tampermonkey, GreasemonkeyViolentmonkey のような拡張機能のインストールが必要です。

スクリプトをインストールするには、TampermonkeyViolentmonkey のような拡張機能のインストールが必要です。

スクリプトをインストールするには、TampermonkeyViolentmonkey のような拡張機能のインストールが必要です。

スクリプトをインストールするには、TampermonkeyUserscripts のような拡張機能のインストールが必要です。

このスクリプトをインストールするには、Tampermonkeyなどの拡張機能をインストールする必要があります。

このスクリプトをインストールするには、ユーザースクリプト管理ツールの拡張機能をインストールする必要があります。

(ユーザースクリプト管理ツールは設定済みなのでインストール!)

このスタイルをインストールするには、Stylusなどの拡張機能をインストールする必要があります。

このスタイルをインストールするには、Stylus などの拡張機能をインストールする必要があります。

このスタイルをインストールするには、Stylus tなどの拡張機能をインストールする必要があります。

このスタイルをインストールするには、ユーザースタイル管理用の拡張機能をインストールする必要があります。

このスタイルをインストールするには、ユーザースタイル管理用の拡張機能をインストールする必要があります。

このスタイルをインストールするには、ユーザースタイル管理用の拡張機能をインストールする必要があります。

(ユーザースタイル管理ツールは設定済みなのでインストール!)

このスクリプトの質問や評価の投稿はこちら通報はこちらへお寄せください
// ==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
  }
})();