CommuteEasy

Show commute times on StreetEasy & Craigslist listings and maps

CommuteEasyคืออะไร?

CommuteEasy เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Noah Pryor และคุณลักษณะหลักของมันคือ "Show commute times on StreetEasy & Craigslist listings and maps"

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

screenshot

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

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

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

                        "It is a truth universally acknowledged, that a New Yorker looking for an apartment, must be in want of a good commute. " - Jane Austen 

See commute times on apartment listings on StreetEasy and Craigslist. Just set your destination, what time you want to arrive by, and the maximum commute you can endure and you'll see your prospective under each listing and an overlay of places within that range  on each map. 

Features:
- Adds commute time and a link to the directions to listing and search pages on StreetEasy and Craigslist
- View public transit, walking, biking, and driving commute times
- Set what time you need to arrive by, and it'll calculate the commute using that. No more checking google maps and realizing the line you'd take is closed for the weekend (thanks Cuomo). 
- Adds subway lines to listing maps






FAQ:


Q: Are you affiliated with StreetEasy or Craiglist?
A. No. Not at all.

Q: How are these commute times calculated?
A: The commutes are calculated using the Google Maps Distance Matrix API for text listings, and the maps use the TravelTimePlatform. Directions urls point to google maps. 

Q: Are you GDPR compliant?
A. By golly, I hope so. All storage and api call are done locally within your browser, nothing hits my servers, which makes it physically impossible for me to sell it to the Russians. 
Q: 


Popup screenshot: https://www.dropbox.com/s/47ijh0ry0u0mlgc/Screenshot%202018-05-02%2000.07.42.png?dl=0                    

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

ชื่อ CommuteEasy CommuteEasy
ID plbdifndljpeadhficlbliafcjofolpf
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/commuteeasy/plbdifndljpeadhficlbliafcjofolpf
คำอธิบาย Show commute times on StreetEasy & Craigslist listings and maps
ขนาดไฟล์ 82.1 KB
จำนวนการติดตั้ง 20
เวอร์ชันปัจจุบัน 0.3.0
อัปเดตครั้งล่าสุด 2018-05-02
วันที่เผยแพร่ 2018-05-01
คะแนน 5.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา Noah Pryor
อีเมล [email protected]
ประเภทการชำระเงิน free
URL หน้านโยบายความเป็นส่วนตัว https://www.linkedout.link/privacy.txt
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_appName__",
    "description": "__MSG_appDescription__",
    "version": "0.3.0",
    "short_name": "__MSG_appShortName__",
    "manifest_version": 2,
    "default_locale": "en",
    "icons": {
        "16": "images\/icon-16.png",
        "128": "images\/icon-128.png"
    },
    "background": {
        "scripts": [
            "scripts\/background.js"
        ]
    },
    "browser_action": {
        "default_icon": {
            "19": "images\/icon-19.png",
            "38": "images\/icon-38.png"
        },
        "default_title": "__MSG_browserActionTitle__",
        "default_popup": "pages\/popup.html"
    },
    "permissions": [
        "tabs",
        "storage",
        "https:\/\/maps.googleapis.com\/**\/*"
    ],
    "web_accessible_resources": [
        "scripts\/craigslistMapOverlay.js",
        "scripts\/streeteasyMapOverlay.js"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/streeteasy.com\/for-rent\/**\/*",
                "https:\/\/streeteasy.com\/**\/*"
            ],
            "js": [
                "scripts\/streeteasySearch.js"
            ],
            "run_at": "document_end",
            "all_frames": false
        },
        {
            "matches": [
                "https:\/\/*.craigslist.org\/*"
            ],
            "exclude_matches": [
                "https:\/\/*.craigslist.org\/search\/*"
            ],
            "js": [
                "scripts\/craigslistListing.js"
            ],
            "run_at": "document_end",
            "all_frames": false
        },
        {
            "matches": [
                "https:\/\/*.craigslist.org\/search\/*"
            ],
            "js": [
                "scripts\/craigslistSearch.js"
            ],
            "run_at": "document_end",
            "all_frames": false
        }
    ]
}