86% found this document useful (7 votes)
1K views2 pages

Bls 2

This script helps automatically fill out visa application forms on a Spanish visa website. It defines arrays to store applicant data like names, dates of birth, passport numbers. It then populates these arrays with data for 3 families applying together, with each family having 1-3 members. The script will fill the form fields with this data when the progress bar hits 25%.

Uploaded by

elhaytam
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
86% found this document useful (7 votes)
1K views2 pages

Bls 2

This script helps automatically fill out visa application forms on a Spanish visa website. It defines arrays to store applicant data like names, dates of birth, passport numbers. It then populates these arrays with data for 3 families applying together, with each family having 1-3 members. The script will fill the form fields with this data when the progress bar hits 25%.

Uploaded by

elhaytam
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 2

// ==UserScript==

// @name All FamilLy


// @namespace http://tampermonkey.net/
// @version 9
// @description ?lThis is a script to help you apply for a visa in Spain, he can
quickly fill in the visa page information.
// @author TouiMi
// @match
https://www.blsspainmorocco.net/*/blsAppointment/ManageAppointment*
// @grant none
// @run-at document-end

// @downloadURL none
// ==/UserScript==
'use strict';
var timer = setInterval(aaaa, 1000);
function aaaa() {

if(document.querySelector('#progress-percent').textContent == '25%' && $


('#ApplicantsNo').val() > 1){
clearInterval(timer);
let
first_name=[],last_name=[],dateOfBirth=[],passport_no=[],pptIssueDate=[],pptExpiryD
ate=[],TTL=[],ccN=[],cvv=[],ExM=[],ExY=[];
//?????????? I Please fills in the information
I ???????
TTL[0] = 'FAMILYA 4';
first_name[0] = ["SQUAD", "HAMZA", "TAHA"];
last name[0] = ["CHELHANI", "LAKHMILI", "LAKHMILI"];
dateOfBirth[0] = ["1977-03-27", "2010-01-09", "2010-01-09"];
passport no[0] = ["FZ5325945", "ME1473215", "056891705"];
pptlssueDate[0] = ["2019-03-15", "2019-03-15", "2019-03-15"];
pptExpiryDate[0] = ["2024-03-15", "2024-03-15", "2024-03-15"];
//?????????
? ? ? ? ? ? ? ? ? ? ? ? ? ? ?

TTL[1] = 'AZIZ FAMIL


first_name[1] = 2';
last_name[1] = ["BELGHAZI"];
dateOfBirth[1] = ["SOUAD"];
passport_no[1] = ["1988-10-16"];
pptlssueDate[1] = ["CA8695042"];
pptExpiryDate[1] = ["2021-05-31"];
//????????? ["2026-05-31"];
? ? ? ? ? ? ? ? ? ? ? ? ? ? ?

T T L [ 2 ] = first_name[2] = 'BOCHRAGHAM FAMIL2'; ["EL HAMMOUTI"];


last_name[2] = dateOfBirth[2] = ["BADIA"];
passport_no[2] = pptlssueDate[2] = ["1956-03-26"]; ["KP3798959"];
pptExpiryDate[2] = ["2021-09-16"];
//????????? ["2026-09-16"];
? ? ? ? ? ? ? ? ? ? ? ? ? ? ?
TTL[3] = 'NAM FAMIL';

You might also like