Craigslist Inliner Kynetx App

Recently while browsing a lot of Craigslist postings I got sick of clicking each link to open in a new tab just to view them. If you have spent much time on Craigslist I’m sure you have experience the same frustration. This Kynetx app is my answer to my frustration. It will present a button on listing pages that, when clicked, will load each listing inline. You can view the app and get it by visiting http://apps.kynetx.com/installable_apps/4445-Craigslist_Inliner

Webkit Search Input Styling

Default webkit search input styling versus normalized
I recently needed to have a search input look the same on Firefox and Chrome. Chrome does some fancy styling when you use a search type input which is great but sometimes you need it to be the same everywhere. I was able to get it to look the same by employing the following styling:

input[type=search] {
    -webkit-appearance:textfield;
    -webkit-box-sizing:content-box;
}
 
input::-webkit-search-decoration,
input::-webkit-search-cancel-button {
    display: none;
}

If you are using a webkit based browser you can checkout the live demo at -> http://mikegrace.s3.amazonaws.com/geek-blog/webkit-search-input-example.html