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開發的Chrome擴展程式,該擴展的主要功能是“This extension helps you to book a Drive Practical Test.”。

擴展截圖

screenshot

下載UK - Drive Practical Test Book Helper擴展crx文件

下載UK - Drive Practical Test Book Helper擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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
}