Extract property details from NoBroker listings and automatically calculate distance to Amazon office locations in Bangalore.
- 📍 Auto Distance Calculation - Calculates distance to Amazon DC Rome BLR26
- 📋 Property Details Extraction - Rent, deposit, area, BHK, furnishing
- 🔗 Quick Copy - One-click copy of property link
- 🗺️ Haversine Formula - Accurate distance calculation
- 💰 Complete Info - All property details in one place
- Install Tampermonkey browser extension
- Click on Tampermonkey icon → Create a new script
- Copy the contents of
NoBrokerHelper.user.js - Paste into the editor and save (Ctrl+S)
- Visit any NoBroker property page:
https://www.nobroker.in/property/... - The script automatically extracts:
- Property rent and deposit
- Area and carpet area
- BHK configuration
- Furnishing details
- Property coordinates
- Calculates distance to Amazon DC Rome BLR26
- Displays all information in an easy-to-copy format
Currently configured for:
- Office: Amazon Development Centre - Rome, BLR26
- Location: Latitude 12.9850292, Longitude 77.704258
To change the office location, edit these lines in the script:
const OFFICE_CONFIG = {
latitude: 12.9850292, // Your office latitude
longitude: 77.704258, // Your office longitude
name: "Your Office Name"
};The script displays:
Property: [Property Type] - [BHK]
Rent: ₹[Amount]
Deposit: ₹[Amount]
Area: [Square Feet] sqft
Distance to Amazon DC Rome: [X.X] km
Link: [Property URL]
Uses the Haversine formula for accurate great-circle distance calculation:
- Accounts for Earth's spherical shape
- Results in kilometers
- Accurate for property search ranges
Perfect for:
- 🏢 Amazon employees looking for properties near office
- 🔍 Property hunters comparing multiple listings
- 📊 Quick analysis of property distance and details
- 💾 Saving property info for later comparison
- ✅ Chrome / Chromium / Edge
- ✅ Firefox
- ✅ Safari (with Tampermonkey)
- ✅ Opera
Site: Works on nobroker.in property pages
- ✅ Runs entirely in your browser
- ✅ No data sent to external servers
- ✅ No tracking
- ✅ Open source
- Current: v4.0
- Author: Customized for Amazon employees
- Multiple Properties: Open multiple NoBroker tabs and compare distances
- Copy Data: Use the extracted information for spreadsheet comparison
- Filter by Distance: Focus on properties within your preferred commute range
- Save Links: Keep track of promising properties with the copied links
Property Details:
-----------------
Type: 2 BHK Apartment
Rent: ₹25,000
Deposit: ₹75,000
Carpet Area: 1100 sqft
Furnishing: Semi-Furnished
Distance to Amazon DC Rome BLR26: 4.2 km
Link: https://www.nobroker.in/property/...
Distance not showing:
- Ensure property page has loaded completely
- Check browser console for errors
- Verify property has valid coordinates
Wrong office location:
- Update OFFICE_CONFIG with correct coordinates
- Use Google Maps to get accurate lat/long
Script not running:
- Verify you're on a property detail page (not search results)
- Check Tampermonkey is enabled
- Refresh the page
To add more office locations or features:
- Edit the script
- Add multiple office configurations
- Calculate distance to all offices
- Display nearest office
Customized for Amazon employees in Bangalore
Part of the TamperScripts Collection