UK - Drive Practical Test Book Helper

This extension helps you to book a Drive Practical Test.

UK - Drive Practical Test Book Helper क्या है?

UK - Drive Practical Test Book Helper Daniel Ciuffetelli द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension helps you to book a Drive Practical Test."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में UK - Drive Practical Test Book Helper एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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.                    

एक्सटेंशन की मूल जानकारी

नाम UK - Drive Practical Test Book Helper UK - Drive Practical Test Book Helper
ID emnhllljokeicdcnjccdagoddjlimilh
आधिकारिक URL https://chromewebstore.google.com/detail/uk-drive-practical-test-b/emnhllljokeicdcnjccdagoddjlimilh
विवरण This extension helps you to book a Drive Practical Test.
फ़ाइल का आकार 7.34 KB
स्थापना संख्या 35
वर्तमान संस्करण 1.0
अंतिम अपडेट 2023-04-13
प्रकाशन तिथि 2023-04-12
रेटिंग 5.00/5 कुल 1 रेटिंग्स
डेवलपर Daniel Ciuffetelli
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://ciuffetelli.co.uk
सहायता पृष्ठ URL https://github.com/ciuffetelli/driver-practical-test-dvsa
समर्थित भाषाएँ 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
}