-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathuserscript.js
More file actions
25 lines (23 loc) · 979 Bytes
/
userscript.js
File metadata and controls
25 lines (23 loc) · 979 Bytes
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
// ==UserScript==
// @name GeoFS fuel add-on
// @namespace https://github.com/KittenApps-Films/Geofs-fuel-addon
// @version 1.0
// @description Adds fuel to GeoFS
// @author Noah S. Davidson, GeoFS call sign KittenFilms[KFA]
// @match http://geo-fs.com/geofs.php?v=*
// @match http://www.geo-fs.com/geofs.php?v=*
// @match https://geo-fs.com/geofs.php?v=*
// @match https://www.geo-fs.com/geofs.php?v=*
// @icon https://www.google.com/s2/favicons?sz=64&domain=geo-fs.com
// @grant none
// ==/UserScript==
window.addEventListener('load', function() {
'use strict';
console.log("Geofs fuel installer running");
var FuelScript = document.createElement('script');
FuelScript.src="https://kittenapps-films.github.io/Geofs-fuel-addon/fuel.js";
FuelScript.type = 'text/javascript';
FuelScript.id = "Fuel add-on";
document.body.appendChild(FuelScript);
console.log("Fuel installed");
})