IsQuestCompleted

Simple macro that check you completed that quest before.

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

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

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

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

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

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

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

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

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

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

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

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

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

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

このスクリプトの質問や評価の投稿はこちら通報はこちらへお寄せください
// ==UserScript==
// @name         IsQuestCompleted
// @namespace    http://tampermonkey.net/
// @version      3.0
// @description  Simple macro that check you completed that quest before.
// @author       Przemekb88 / Yalahari
// @license      MIT
// @match        https://www.wowhead.com/quest=*
// @match        https://wowpedia.fandom.com/wiki/*
// @grant        none
// ==/UserScript==


var host = window.location.hostname
var url = window.location.href
if (host === 'wowpedia.fandom.com') {
    url = document.querySelector('.elinks .wowhead').firstChild.href
}

var page = url.substring(url.lastIndexOf('quest=') + 6)
var result = page.split('/')

var button = document.createElement('button')

button.onclick = function() {
    navigator.clipboard.writeText('/script print(IsQuestFlaggedCompleted('+result[0]+'))')
    button.textContent = 'Copied'
    setTimeout(function() {
        button.textContent = 'Is quest completed?'
    }, 3000)
}
button.textContent = 'Is quest completed?'

if (host === 'wowpedia.fandom.com') {
    var tr = document.createElement('tr')
    var th = document.createElement('th')
    th.setAttribute('scope', 'row')
    th.style.textAlign = 'left'
    th.style.backgroundColor = 'transparent'
    th.innerHTML = 'Check'
    tr.appendChild(th)
    tr.appendChild(button)
    var questbox = document.querySelector('.infobox.darktable.questbox')
    questbox.appendChild(tr)
} else {
    var node = document.createElement('li')
    node.appendChild(button)
    var myList = document.getElementById('infobox-contents-0').getElementsByTagName('ul')[0]
    myList.appendChild(node)
}