Skip to content

Instantly share code, notes, and snippets.

// ==UserScript==
// @name PoE filtered characters list
// @namespace http://tampermonkey.net/
// @version 0.18
// @description adds filters to "characters" tab of player's profile on official PoE site
// @author alt0172
// @match https://*.pathofexile.com/account/view-profile/*/characters*
// @run-at document-idle
// @grant GM_addStyle
// @require https://greasemonkey.github.io/gm4-polyfill/gm4-polyfill.js
/* ==UserStyle==
@name poedb dark theme
@namespace github.com/openstyles/stylus
@version 0.1.2
@description less borders and different colors (target page: poedb.tw/mods.php ). updated 2019.09.4 - implemented poedb ilvl labels and mods lists
@author alt0172
@
@license unlicensed
@updateURL https://gist.githubusercontent.com/alt0172/6de749edf86add36a0633b28849ae600/raw//poedb_dark_theme.user.css
@downloadURL hhttps://gist.githubusercontent.com/alt0172/6de749edf86add36a0633b28849ae600/raw//poedb_dark_theme.user.css
/* ==UserStyle==
@name poedb light theme
@namespace github.com/openstyles/stylus
@version 0.1.2
@description less borders and different colors (target page: poedb.tw/mods.php ).updated 2019.09.4 - implemented poedb ilvl labels and mods lists
@author alt0172
@license unlicense
@updateURL https://gist.github.com/alt0172/65bde1de50b0762dd8f80fcc45fcfeec/raw/poedb_light_theme.user.css
@downloadURL https://gist.github.com/alt0172/65bde1de50b0762dd8f80fcc45fcfeec/raw/poedb_light_theme.user.css
==/UserStyle== */
// ==UserScript==
// @name poedb synth mod helper
// @namespace http://tampermonkey.net/
// @version 0.18
// @description adds icon near each mod, on click shows what synthesised mods can be crafted from items with this mod. if mod isn't used in crafting, it's marked too
// @author alt0172
// @match http://poedb.tw/*mod*
// @match https://poedb.tw/*mod*
// @run-at document-idle
// @grant GM_addStyle
// ==UserScript==
// @name poedb dead mods highlighter
// @namespace http://tampermonkey.net/
// @version 0.15
// @description highlights mods that aren't used in creating synthesised implicit mods (check https://old.reddit.com/r/pathofexile/comments/b3if73/psa_you_can_use_dead_mods_on_fractured_items_to/ for more info)
// @author alt0172
// @match http://poedb.tw/*mod*
// @match https://poedb.tw/*mod*
// @run-at document-idle
// @grant GM_addStyle
// ==UserScript==
// @name poedb synth mods filter
// @namespace http://tampermonkey.net/
// @version 0.32
// @description click on synthesised mod in poedb to show only similar (to check desired threshholds)
// @author alt0172
// @match http://poedb.tw/*mod*
// @match https://poedb.tw/*mod*
// @run-at document-idle
// @grant GM_addStyle
// ==UserScript==
// @name poedb add ilvl
// @namespace http://tampermonkey.net/
// @version 0.19
// @description add ilvl req for top tier of mods
// @author alt0172
// @match http://poedb.tw/*mod*
// @match https://poedb.tw/*mod*
// @grant GM_addStyle
// @require https://greasemonkey.github.io/gm4-polyfill/gm4-polyfill.js