— This plugin for WordPress allows you to show Scrnshots.com captures on your sites. It provides both a Widget and a function to setup and configure easily.

Download Here Scrnshots Feed Plugin for WordPress.
Installation
1. Upload the files.
2. Activate the plugin.
3. Configure your scrnshots feed widget under the Appearance > Widgets tab.
Advanced Usage
The function mv_get_scrnshots_feed(); can be used to return the scrnshots feed on any part of a theme. It supports the following parameters:
// set arguments $args = array( // (int) how many photos you want to display. 'num_items' => 10, // (string) small, medium, large or fullsize. 'imagesize' => 'medium', // (string) specify a user id ( ie:sksmatt ). 'id_name' => 'sksmatt', // (boolean) Adds rel="nofollow" to links. 'rel' => true, ); echo mv_get_scrnshots_feed($args);
The $args above would show the 10 most recent screenshots from sksmatt user in medium size.