-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathuserscript.js
More file actions
28 lines (27 loc) · 1.16 KB
/
userscript.js
File metadata and controls
28 lines (27 loc) · 1.16 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
// ==UserScript==
// @name GeoFSUsers
// @namespace https://github.com/KittenApps-Films/GeoFSUsers
// @version 1.0
// @description Adds user lookup
// @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
// ==/UserScript==
window.addEventListener('load', function() {
'use strict';
console.log("GeoFSUsers installer running");
var UsersScript = document.createElement('script');
UsersScript.src="https://kittenapps-films.github.io/GeoFSUsers/main.js";
UsersScript.type = 'text/javascript';
UsersScript.id = "UsersScript";
document.body.appendChild(UsersScript);
var UsersList = document.createElement('script');
UsersList.src="https://kittenapps-films.github.io/GeoFSUsers/convert.js";
UsersList.type = 'module';
UsersList.id = "UsersScript";
document.body.appendChild(UsersList);
console.log("GeoFSUsers installed");
})