As I Solve

Bulletproof solutions for the savvy developer.

CarGurus Bookmarklet – View original window sticker


To get the original window sticker (options, features, MSRP) for any Chrysler, Alfa Romeo, Dodge, Fiat, Ford, Hyundai, Jeep, Lincoln, Maserati, Mazda, or Mercury with a VIN listed on CarGurus, navigate to the car detail listing page and use this bookmarklet: CarGurus Sticker

Or paste & run the following in your browser console:

window.open(
    'https://researchmaniacs.com/VIN-Number-Lookup/WindowSticker/' +
    $('input[name="formOpenedData.make"]').val().replace(/\s/g,'') +
    'Sticker.html?title=' +
    $('.cg-listingDetail-specsWrap td.attributeLabel:contains("VIN:")')
        .next('td')
        .text() +
    '#myIframe'
);

Leave a Reply