Improved greasemonkey script by adding scope

This commit is contained in:
Christoph Stahl 2019-06-26 21:54:05 +02:00
parent e7e8269cbf
commit 6509400f8e
1 changed files with 30 additions and 24 deletions

View File

@ -1,10 +1,15 @@
// ==UserScript==
// @name HeroSaver for HeroForge
// @version 1
// @description Automatically load HeroSaver when visiting HeroForge
// @namespace https://github.com/christofsteel/herosaver
// @match https://www.heroforge.com/
// @grant none
// ==/UserScript==
(function() {
'use strict';
var observerOptions = {
childList: true,
subtree: true
@ -31,3 +36,4 @@ var observer = new MutationObserver(function(mutationList, observer) {
});
});
observer.observe(document.querySelector("body"), observerOptions);
})();