NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript==
// @name Google File Search
// @namespace redbeard.436@gmail.com
// @version 1.0
// @description Add a file type to search
// @author red436
// @copyright 5-30-2020
// @license MIT; https://opensource.org/licenses/MIT
// @match https://google.com
// @match https://www.google.com
// @icon https://raw.githubusercontent.com/Ede123/userscripts/master/icons/Google.png
// @grant none
// @require https://cdnjs.cloudflare.com/ajax/libs/jslite/1.1.12/JSLite.min.js
// @run-at document-end
// ==/UserScript==
(function() {
'use strict';
let form = JSLite('form .RNNXgb');
// Insert file type box after main search box
form.after(JSLite('<br><input style="posistion: absolute; left: 100px;" type="text" name="as_filetype" id="fileID">File Type</input>'));
})();