UK - Drive Practical Test Book Helper

This extension helps you to book a Drive Practical Test.

Cos'è UK - Drive Practical Test Book Helper?

UK - Drive Practical Test Book Helper è un'estensione di Chrome sviluppata da Daniel Ciuffetelli, e la sua funzione principale è "This extension helps you to book a Drive Practical Test.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione UK - Drive Practical Test Book Helper

Scarica i file di estensione UK - Drive Practical Test Book Helper 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

                        After struggling for months to secure a practical test booking for my wife, I had an idea. As a JavaScript developer, I realized that I could use my skills to find a solution through coding.

I'm sure many of you can relate to the difficulty of finding an available slot, especially with all the recent news. It's a frustrating process that requires endless hours of staring at a computer screen and hoping for the best.

That's why I came up with a solution: a Chrome extension that automatically refreshes the page and alerts you when a spot becomes available. Of course, you'll still need to act quickly to secure the booking, but I can personally guarantee that this method is more effective than spending three months manually searching for an opening.                    

Informazioni di Base sull'Estensione

Nome UK - Drive Practical Test Book Helper UK - Drive Practical Test Book Helper
ID emnhllljokeicdcnjccdagoddjlimilh
URL Ufficiale https://chromewebstore.google.com/detail/uk-drive-practical-test-b/emnhllljokeicdcnjccdagoddjlimilh
Descrizione This extension helps you to book a Drive Practical Test.
Dimensione del File 7.34 KB
Conteggio Installazioni 35
Versione Corrente 1.0
Ultimo Aggiornamento 2023-04-13
Data di Pubblicazione 2023-04-12
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore Daniel Ciuffetelli
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://ciuffetelli.co.uk
URL della Pagina di Aiuto https://github.com/ciuffetelli/driver-practical-test-dvsa
Lingue Supportate en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "UK - Drive Practical Test Book Helper",
    "version": "1.0",
    "description": "This extension helps you to book a Drive Practical Test.",
    "author": "Danel Ciuffetelli ",
    "permissions": [
        "storage"
    ],
    "host_permissions": [
        "https:\/\/*.driverpracticaltest.dvsa.gov.uk\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.driverpracticaltest.dvsa.gov.uk\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "manifest_version": 3
}