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
公式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
Eメール [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
}