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

Was ist Form Fill Utility?

Form Fill Utility ist eine Chrome-Erweiterung, die von rskextention entwickelt wurde, und ihr Hauptmerkmal ist "Fills the form automatically in the assisted-service.egov-nsdl.com and myutiitsl website based on the cookies created from a website".

Erweiterungsscreenshots

screenshot

Form Fill Utility-Erweiterungs-CRX-Datei herunterladen

Laden Sie Form Fill Utility-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

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

Grundlegende Informationen zur Erweiterung

Name Form Fill Utility Form Fill Utility
ID bekmfampknpcadmjekhhinmolcaidpaf
Offizielle URL https://chromewebstore.google.com/detail/form-fill-utility/bekmfampknpcadmjekhhinmolcaidpaf
Beschreibung Fills the form automatically in the assisted-service.egov-nsdl.com and myutiitsl website based on the cookies created from a website
Dateigröße 16.84 KB
Installationsanzahl 13,118
Aktuelle Version 2.4
Letztes Update 2024-01-27
Veröffentlichungsdatum 2022-10-20
Bewertung 4.25/5 Insgesamt 4 Bewertungen
Entwickler rskextention
E-Mail [email protected]
Zahlungsart free
URL der Datenschutzrichtlinien-Seite https://ruraleservices.com/agent/privacypolicy
Unterstützte Sprachen 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"
            ]
        }
    ]
}