-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathautofill.js
More file actions
24 lines (22 loc) · 781 Bytes
/
autofill.js
File metadata and controls
24 lines (22 loc) · 781 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
// ==UserScript==
// @name AutoFill Push
// @namespace http://tampermonkey.net/
// @version 0.1
// @description try to take over the world!
// @author You
// @match https://qlf-sun-admin.sfr.com/sun/push/ng/bundles/*/campaigns/add/*
// @match https://sun-admin.sfr.com/sun/push/ng/bundles/*/campaigns/add/*
// @match https://dev-sun-admin.inovatel.com/sun/push/ng/bundles/*/campaigns/add/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
var D=document.forms[0];
D.firstname.value='AAAA';
D.lastname.value='BBBB';
D.birthday.value='01/01/1970';
D.lieunaissance.value='Paris';
D.address.value='55 Rue du Faubourg Saint-Honoré';
D.town.value='Paris';
D.zipcode.value=75008;
})();