Texas Hold'em Zynga - Hands Reference

Adds a reference to poker hands on the side

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// ==UserScript==
// @name       Texas Hold'em Zynga - Hands Reference
// @namespace  http://privatesniper.me.uk
// @version    0.1
// @description  Adds a reference to poker hands on the side
// @match      https://apps.facebook.com/texas_holdem/?fb_source=bookmark&ref=bookmarks&count=1&fb_bmpos=7_1
// @match      https://apps.facebook.com/texas_holdem/*
// @require      http://code.jquery.com/jquery-1.11.0.min.js
// @copyright  2012+, You
// ==/UserScript==

var img = 'http://i259.photobucket.com/albums/hh309/PrivateSniper/Web%20ReSkins/UserScripts/poker-hands-small.jpg';
// var img_html = "<img src='"+img+"' alt='poker hands' title='Poker Hands' />";

var width = $( window ).width();

if (width >= 2543) { // 2560 x 1080
    $("<div id='ps-poker' style='position: absolute; right: 620px; top: 250px; width: 400px; height: 500px; background-image: url("+img+"); z-index: 9000;'>&nbsp;</div>").appendTo("body");
}
else
{
    $("<div id='ps-poker' style='position: absolute; right: 0px; top: 250px; width: 400px; height: 500px; background-image: url("+img+"); z-index: 9000;'>&nbsp;</div>").appendTo("body");
}