Skyforge Wikia - Bubble help on skill (Abilities and Talents)

Add a bubble help when you mouseover a skill name (Abilities and Talents)

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==UserScript==
// @name        Skyforge Wikia - Bubble help on skill (Abilities and Talents)
// @namespace   hideonScript
// @author      Tegomass
// @description Add a bubble help when you mouseover a skill name (Abilities and Talents)
// @include     http://skyforge.wikia.com/*
// @require     http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js
// @version     1.0
// @grant       GM_addStyle
// ==/UserScript==

GM_addStyle('#WikiaArticle{overflow: visible !important;}\
	.tego_box{display:none;}\
	a[title]:hover .tego_box{ display:inline; position:absolute; z-index: 9999}');

$(function() { //shortcut link
	if (!$('table.lighttable.zebra').length) {
		return false;
	}
	$('table.lighttable.zebra').each(function(index, el) {
		$('a[title]', this).one('mouseover', function(e) {
			get_skill_info($(this).attr('href'), $(this));
		});
	});

	function get_skill_info(url, self) {
		$.get(url, function(data) {
			var item = $('aside.portable-infobox', data);
			item.addClass('tego_box');
			self.append(item);
		});
	}
});