Form Fill Utility

Fills the form automatically in the assisted-service.egov-nsdl.com and myutiitsl website based on the cookies created from a website

Cos'è Form Fill Utility?

Form Fill Utility è un'estensione di Chrome sviluppata da rskextention, e la sua funzione principale è "Fills the form automatically in the assisted-service.egov-nsdl.com and myutiitsl website based on the cookies created from a website".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Form Fill Utility

Scarica i file di estensione Form Fill Utility in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        It fills the form based on the cookies that are created in the website. It reads the cookies from browser and fills the form                    

Informazioni di Base sull'Estensione

Nome Form Fill Utility Form Fill Utility
ID bekmfampknpcadmjekhhinmolcaidpaf
URL Ufficiale https://chromewebstore.google.com/detail/form-fill-utility/bekmfampknpcadmjekhhinmolcaidpaf
Descrizione Fills the form automatically in the assisted-service.egov-nsdl.com and myutiitsl website based on the cookies created from a website
Dimensione del File 16.84 KB
Conteggio Installazioni 13,118
Versione Corrente 2.4
Ultimo Aggiornamento 2024-01-27
Data di Pubblicazione 2022-10-20
Valutazione 4.25/5 Totale 4 Valutazioni
Sviluppatore rskextention
Email [email protected]
Tipo di Pagamento free
URL della Pagina della Politica sulla Privacy https://ruraleservices.com/agent/privacypolicy
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Form Fill Utility",
    "version": "2.4",
    "description": "Fills the form automatically in the assisted-service.egov-nsdl.com and myutiitsl website based on the cookies created from a website",
    "permissions": [
        "cookies",
        "storage"
    ],
    "host_permissions": [
        "*:\/\/assisted-service.egov-nsdl.com\/*",
        "*:\/\/www.myutiitsl.com\/*",
        "*:\/\/ruraleservices.com\/*"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "manifest_version": 3,
    "icons": {
        "16": "images\/get_started16.png",
        "32": "images\/get_started32.png",
        "48": "images\/get_started48.png",
        "128": "images\/get_started128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/assisted-service.egov-nsdl.com\/*",
                "*:\/\/www.myutiitsl.com\/*"
            ],
            "run_at": "document_end",
            "js": [
                "contentScript.js"
            ]
        }
    ]
}