forked from saahphire/NeopetsUserscripts
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhighlightWearablesInQuickStock.js
More file actions
39 lines (34 loc) · 2.84 KB
/
Copy pathhighlightWearablesInQuickStock.js
File metadata and controls
39 lines (34 loc) · 2.84 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
// ==UserScript==
// @name Neopets: Highlight Wearables in Quick Stock
// @namespace https://github.com/saahphire/NeopetsUserscripts
// @version 2.0.0
// @description Highlights wearable items in Quick Stock. Updated to work with the new Quick Stock.
// @author saahphire
// @homepageURL https://github.com/saahphire/NeopetsUserscripts
// @homepage https://github.com/saahphire/NeopetsUserscripts
// @downloadURL https://github.com/saahphire/NeopetsUserscripts/blob/main/highlightWearablesInQuickStock.js
// @updateURL https://github.com/saahphire/NeopetsUserscripts/blob/main/highlightWearablesInQuickStock.js
// @match *://*.neopets.com/quickstock.phtml*
// @icon https://www.google.com/s2/favicons?sz=64&domain=neopets.com
// @license Unlicense
// ==/UserScript==
/*
•:•.•:•.•:•:•:•:•:•:•:••:•.•:•.•:•:•:•:•:•:•:•:•.•:•.•:•:•:•:•:•:•:••:•.•:•.•:•.•:•:•:•:•:•:•:•:•.•:•:•.•:•.••:•.•:•.••:
........................................................................................................................
☆ ⠂⠄⠄⠂⠁⠁⠂⠄⠄⠂✦ ⠂⠄⠄⠂⠁⠁⠂⠄⠄⠂☆ ⠂⠄⠄⠂⠁⠁⠂⠄⠄⠂✦ ⠂⠄⠄⠂⠁⠁⠂⠄⠂⠄⠄⠂☆ ⠂⠄⠄⠂⠁⠁⠂⠄⠄⠂✦ ⠂⠄⠄⠂⠁⠁⠂⠄⠂⠄⠄⠂☆ ⠂⠄⠄⠂⠁⠁⠂⠄⠄⠂✦
This script is an alternative to my userstyle, in case you don't want to install Stylus:
https://userstyles.world/style/28157/neopets-highlight-wearables-in-quick-stock
All it does is highlight wearable items in blue when you're in the Quick Stock page.
Formerly, it had the option to auto-select "Closet" for these items. It has been removed. Please install my other
userscript "Quick Stock Smart Sort" from one of these sources instead:
https://github.com/saahphire/NeopetsUserscripts/blob/main/quickStockSmartSort.js
https://greasyfork.org/en/scripts/557754-neopets-quick-stock-smart-sort
✦ ⌇ saahphire
☆ ⠂⠄⠄⠂⠁⠁⠂⠄⠄⠂✦ ⠂⠄⠄⠂⠁⠁⠂⠄⠄⠂☆ ⠂⠄⠄⠂⠁⠁⠂⠄⠄⠂✦ ⠂⠄⠄⠂⠁⠁⠂⠄⠂⠄⠄⠂☆ ⠂⠄⠄⠂⠁⠁⠂⠄⠄⠂✦ ⠂⠄⠄⠂⠁⠁⠂⠄⠂⠄⠄⠂☆ ⠂⠄⠄⠂⠁⠁⠂⠄⠄⠂✦
........................................................................................................................
•:•.•:•.•:•:•:•:•:•:•:••:•.•:•.•:•:•:•:•:•:•:•:•.•:•.•:•:•:•:•:•:•:••:•.•:•.•:•.•:•:•:•:•:•:•:•:•.•:•:•.•:•.••:•.•:•.••:
*/
(function() {
'use strict';
document.head.getElementsByTagName('style')[0].insertAdjacentHTML('beforeend', '.np-table-row:has([value="closet"]) {background-color: #DFEAF7!important}');
})();