Global Wowhead Integration

By SmileyTSL Last update Nov 11, 2008 — Installed 121 times. Daily Installs: 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0
// ==UserScript==
// @name          Global Wowhead Integration
// @namespace     wowhead-for-all
// @description   Add Wowhead integration to ALL websites! From now on, all links that link to a Wowhead URL (item, spell, etc.) will have a Wowhead-like tooltip!
// @include       *
// @exclude       http://*wowhead.com*
// @exclude       http://*wowwiki.com*
// ==/UserScript==
var head, wowhead;
head = document.getElementsByTagName('head')[0];
if (!head) { return; }
wowhead = document.createElement('script');
wowhead.src = 'http://www.wowhead.com/widgets/power.js';
head.appendChild(wowhead);