DMV Appointement Checker

Monitor latest appointment availabilities for the Californian Department of Motor Vehicle

DMV Appointement Checkerคืออะไร?

DMV Appointement Checker เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://tonoid.com และคุณลักษณะหลักของมันคือ "Monitor latest appointment availabilities for the Californian Department of Motor Vehicle"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย DMV Appointement Checker

ดาวน์โหลดไฟล์ส่วนขยาย DMV Appointement Checker ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Monitor latest appointment availabilities for the Californian Department of Motor Vehicle                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ DMV Appointement Checker DMV Appointement Checker
ID pilicigppihnlfgeifeoaehaamhdknji
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/dmv-appointement-checker/pilicigppihnlfgeifeoaehaamhdknji
คำอธิบาย Monitor latest appointment availabilities for the Californian Department of Motor Vehicle
ขนาดไฟล์ 82.51 KB
จำนวนการติดตั้ง 170
เวอร์ชันปัจจุบัน 1.3
อัปเดตครั้งล่าสุด 2020-03-06
วันที่เผยแพร่ 2020-03-04
คะแนน 4.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา https://tonoid.com
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://www.tonoid.com
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "DMV Appointement Checker",
    "short_name": "dmv-appointement-checker",
    "description": "Monitor latest appointment availabilities for the Californian Department of Motor Vehicle",
    "version": "1.3",
    "author": "Simo Elalj ",
    "options_page": "options.html",
    "icons": {
        "16": "16.png",
        "48": "48.png",
        "128": "128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.dmv.ca.gov\/wasapp\/foa\/*"
            ],
            "js": [
                "content-script.js"
            ],
            "run_at": "document_end"
        }
    ],
    "content_security_policy": "script-src 'self' https:\/\/www.google-analytics.com; object-src 'self'",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "permissions": [
        "storage",
        "tabs"
    ]
}