UK - Drive Practical Test Book Helper

This extension helps you to book a Drive Practical Test.

Hvad er UK - Drive Practical Test Book Helper?

UK - Drive Practical Test Book Helper er en Chrome-udvidelse udviklet af Daniel Ciuffetelli, og dens hovedfunktion er "This extension helps you to book a Drive Practical Test.".

Udvidelsesskærmbilleder

screenshot

Download UK - Drive Practical Test Book Helper-udvidelses-CRX-fil

Download UK - Drive Practical Test Book Helper-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn UK - Drive Practical Test Book Helper UK - Drive Practical Test Book Helper
ID emnhllljokeicdcnjccdagoddjlimilh
Officiel URL https://chromewebstore.google.com/detail/uk-drive-practical-test-b/emnhllljokeicdcnjccdagoddjlimilh
Beskrivelse This extension helps you to book a Drive Practical Test.
Filstørrelse 7.34 KB
Antal Installationer 35
Nuværende Version 1.0
Senest Opdateret 2023-04-13
Udgivelsesdato 2023-04-12
Bedømmelse 5.00/5 Samlet 1 Bedømmelser
Udvikler Daniel Ciuffetelli
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://ciuffetelli.co.uk
Hjælpeside-URL https://github.com/ciuffetelli/driver-practical-test-dvsa
Understøttede Sprog 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
}