WoWDigger
From WoWWiki
| WoWDigger | |
|---|---|
| |
| URL | http://wowdigger.com |
| Type | Database |
| Registration | Free |
| Launched | June 2007 |
| Maintained By | IncGamers |
| Alexa Rating | 56,193 |
WoWDigger is a new World of Warcraft database, with a focus on character data and freedom from gold-selling and real money trade associations.
The site features several character-related features, including:
- Character outfits, with stats and talent trees
- Wishlists
- Quest logs
- Known recipes
- Bank & Inventory Contents
- Money
Contents |
Reviews
- "WoWDigger.com Outfitter Goes Live.... (Wandering Goblin)"
- "New database site: WoWDigger (WoW Insider)"
- "New database site: WoWDigger (World of Raids)"
Ownership
WoWDigger is owned by IncGamers, who also run WorldOfWar.
WoWDigger and WoWWiki external links
At this time, WoWDigger is not included in WoWWiki's standard set of external links, but here is code which can be added to your user script which changes Wowhead links into WoWDigger ones:
addOnloadHook(function () {
var links = document.getElementsByTagName("a");
for (var i in links) if (links[i].href) {
var wd = links[i].href.replace(/http:\/\/www.wowhead.com\/\?item=(\d+)/, 'http://wowdigger.com/item/view/$1');
if (wd == links[i].href) wd = links[i].href.replace(/http:\/\/www.wowhead.com\/\?npc=(\d+)/, 'http://wowdigger.com/creature/view/$1');
else if (wd == links[i].href) wd = links[i].href.replace(/http:\/\/www.wowhead.com\/\?itemset=(\d+)/, 'http://wowdigger.com/itemset/view/$1');
else if (wd == links[i].href) wd = links[i].href.replace(/http:\/\/www.wowhead.com\/\?quest=(\d+)/, 'http://wowdigger.com/quest/view/$1');
else if (wd == links[i].href) wd = links[i].href.replace(/http:\/\/www.wowhead.com\/\?spell=(\d+)/, 'http://wowdigger.com/spell/view/$1');
else if (wd == links[i].href) wd = links[i].href.replace(/http:\/\/www.wowhead.com\/\?zone=(\d+)/, 'http://wowdigger.com/zone/view/$1');
else if (wd == links[i].href) wd = links[i].href.replace(/http:\/\/www.wowhead.com\/\?faction=(\d+)/, 'http://wowdigger.com/faction/view/$1');
else if (wd == links[i].href) wd = links[i].href.replace(/http:\/\/www.wowhead.com\/\?object=(\d+)/, 'http://wowdigger.com/gameobject/view/$1');
if (wd != links[i].href) {
links[i].href = wd;
links[i].innerHTML = links[i].innerHTML.replace(/Wowhead/gi, 'WoWDigger').replace('http://www.wowwiki.com/images/6/6e/Icon-wowhead-22x22.png', 'http://www.wowwiki.com/images/0/0e/Icon-external-22x22.png');
}
}
});

