Match ID on match pages will launch Dota2 to watch that match.
目前為
// ==UserScript==
// @name Dotabuff Match Link
// @namespace http://greasyfork.org/users/2240-doodles
// @author Doodles
// @version 1
// @description Match ID on match pages will launch Dota2 to watch that match.
// @include *://*dotabuff.com/matches/*
// @grant none
// ==/UserScript==
var div = document.getElementById("content-header-primary");
var matchID = document.URL.split("/matches/")[1].split("/")[0].split("?")[0];
var h1 = div.getElementsByTagName("h1")[0];
h1.innerHTML = "Match <a title=\"Watch Match in Dota 2 Client\" href=\"dota2://matchid=" + matchID + "\">" + matchID + "</a><small>Overview</small>";