-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
5 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
// ==UserScript== | ||
// @name RoA-QoL | ||
// @namespace Reltorakii_is_awesome | ||
// @version 2.8.7 | ||
// @version 2.8.8 | ||
// @description try to take over the world! | ||
// @author Reltorakii | ||
// @icon https://cdn.jsdelivr.net/gh/edvordo/[email protected]/resources/img/logo-32.png | ||
|
@@ -11,6 +11,7 @@ | |
// @resource QoLHeaderHTML https://cdn.jsdelivr.net/gh/edvordo/[email protected]/resources/templates/header.html | ||
// @resource QoLSettingsHTML https://cdn.jsdelivr.net/gh/edvordo/[email protected]/resources/templates/settings.html | ||
// @resource SpectrumCSS https://cdnjs.cloudflare.com/ajax/libs/spectrum/1.8.0/spectrum.min.css | ||
// @resource favicon.ico https://cdn.jsdelivr.net/gh/edvordo/[email protected]/resources/img/favicon.ico | ||
// @require https://cdn.jsdelivr.net/gh/edvordo/[email protected]/common.js | ||
// @require https://cdn.jsdelivr.net/gh/ejci/[email protected]/favico.js | ||
// @require https://cdn.jsdelivr.net/gh/omichelsen/[email protected]/index.js | ||
|
@@ -25,6 +26,7 @@ | |
// @grant GM_info | ||
// @grant GM_addStyle | ||
// @grant GM_getResourceText | ||
// @grant GM_getResourceURL | ||
// ==/UserScript== | ||
(function (window, $) { | ||
|
||
|
@@ -1101,6 +1103,8 @@ | |
document.querySelector('#massButtonHolder').insertAdjacentHTML('beforeend', '<a id="RQ-export-ingredients-for-bento" class="small hidden">[Export]</a>'); | ||
|
||
document.querySelector('#activityWrapper > div').insertAdjacentHTML('beforeend', '<a id="RQ-open-to-drop-tracker" class="small col-xs-12">[QoL Drop Tracker]</a>'); | ||
|
||
document.querySelector('head').insertAdjacentHTML('beforeend', `<link rel="icon" href="${GM_getResourceURL('favicon.ico')}" type="image/x-icon" />`); | ||
}, | ||
setupTemplates() { | ||
let chartsContentTmpl = ''; | ||
|