-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathwider_google_form_fields.user.js
43 lines (40 loc) · 1.57 KB
/
wider_google_form_fields.user.js
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
// ==UserScript==
// @name Wider Google Form Fields
// @namespace https://github.com/StaticPH
// @match https://docs.google.com/forms/*
// @version 1.1
// @createdAt 9/30/2021, 1:34:35 PM
// @author StaticPH
// @description Widens the input fields in google forms from 50% to 100% of the question element (minus padding)
// @license MIT
// @updateURL https://raw.githubusercontent.com/StaticPH/Userscripts/master/wider_google_form_fields.user.js
// @downloadURL https://raw.githubusercontent.com/StaticPH/Userscripts/master/wider_google_form_fields.user.js
// @homepageURL https://github.com/StaticPH/UserScripts
// @supportURL https://github.com/StaticPH/UserScripts/issues
// @icon https://ssl.gstatic.com/docs/spreadsheets/forms/favicon_qp2.png
// @grant GM.addStyle
// @grant GM_addStyle
// @noframes
// @run-at document-start
// ==/UserScript==
(function(){
"use strict";
// Prefer asychronous Greasemonkey4-API GM.addStyle, but allow use of GM_addStyle as a fallback if necessary.
if (typeof GM == 'undefined'){
this.GM = {};
}
if (typeof GM['addStyle'] == 'undefined'){
console.log('GM.addStyle is not defined. Falling back to GM_addStyle Promise.');
GM['addStyle'] = function(...args){
return new Promise((onResolve, onReject) => {
try{ onResolve(GM_addStyle.apply(this, args)); }
catch(err){ onReject(err); }
});
}
}
GM.addStyle(`
.freebirdFormviewerComponentsQuestionTextShort.freebirdFormviewerComponentsQuestionTextTextInput{
width: 100%;
}
`);
})();