Rightmove Commute Time

Introduces a new field to rightmove.co.uk that displays travel times by bike, car, public transport or walking.

Rightmove Commute Timeคืออะไร?

Rightmove Commute Time เป็นส่วนขยายของ Chrome ที่พัฒนาโดย n.dickin16 และคุณลักษณะหลักของมันคือ "Introduces a new field to rightmove.co.uk that displays travel times by bike, car, public transport or walking."

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

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Rightmove Commute Time

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

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

                        Changelog:
 - v1.1.5: Updated to work with current Rightmove version
 - v1.1.3: Arrival Time can now be set for public transport commutes. Dark mode button.
 - v1.1.1: Dark mode - enabled by your system preferences.

Rightmove's `Where Can I Live?` tool does a great job of narrowing down areas suited to your travel preferences, however it only provides an average commute time for each area. 

This tool introduces a travel time field into each Rightmove property listing, so you can further narrow-down your property search.

The tool allows any number of locations to be added, whether it be your workplace, family home or favourite coffee shop you can't bear to be far from! You can then choose your preferred travel mode: walking; cycling; driving; public transport. Whilst viewing a property the travel times each destination will be calculated and displayed.

Arrival time can also be set to reflect the changes in schedule for public transport services throughout the day. NB this only affects public transport commutes, not driving etc.                    

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

ชื่อ Rightmove Commute Time Rightmove Commute Time
ID dglcncgocakijimembpecfmkcgmpdoki
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/rightmove-commute-time/dglcncgocakijimembpecfmkcgmpdoki
คำอธิบาย Introduces a new field to rightmove.co.uk that displays travel times by bike, car, public transport or walking.
ขนาดไฟล์ 103 KB
จำนวนการติดตั้ง 473
เวอร์ชันปัจจุบัน 1.1.5
อัปเดตครั้งล่าสุด 2022-02-14
วันที่เผยแพร่ 2021-04-19
คะแนน 3.60/5 รวมทั้งหมด 5 คะแนน
ผู้พัฒนา n.dickin16
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Rightmove Commute Time",
    "version": "1.1.5",
    "description": "Introduces a new field to rightmove.co.uk that displays travel times by bike, car, public transport or walking.",
    "manifest_version": 2,
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "permissions": [
        "storage",
        "https:\/\/o1txka9p4j.execute-api.us-east-1.amazonaws.com\/dev\/*"
    ],
    "browser_action": {
        "default_icon": {
            "16": "icon16.png",
            "48": "icon48.png",
            "128": "icon128.png"
        },
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.rightmove.co.uk\/properties\/**"
            ],
            "js": [
                "content.js"
            ]
        }
    ]
}