{"id":5307,"date":"2025-02-24T06:14:03","date_gmt":"2025-02-24T06:14:03","guid":{"rendered":"https:\/\/s-o-s.net\/browser-screenshots\/"},"modified":"2025-02-24T06:14:03","modified_gmt":"2025-02-24T06:14:03","slug":"browser-screenshots","status":"publish","type":"post","link":"https:\/\/s-o-s.net\/en_gb\/browser-screenshots\/","title":{"rendered":"Browser Screenshots"},"content":{"rendered":"<p> <br \/>\n<\/p>\n<article id=\"post-20346\" class=\"alignwide post-20346 plugin type-plugin status-publish hentry plugin_section-blocks plugin_tags-blocks plugin_tags-browser plugin_tags-browser-shot plugin_tags-generator plugin_tags-screenshot plugin_category-customization plugin_category-media plugin_category-utilities-and-tools plugin_contributors-binarymoon plugin_contributors-kevinlearynet plugin_contributors-ronalfy plugin_committers-binarymoon plugin_committers-kevinlearynet\">\n<div class=\"plugin-banner\" id=\"plugin-banner-browser-shots\"><\/div>\n<header class=\"plugin-header\">\n<div class=\"entry-heading-container\">\n<div>\n<div class=\"entry-thumbnail\">\n\t\t\t\t\t<img decoding=\"async\" class=\"plugin-icon\" src=\"https:\/\/ps.w.org\/browser-shots\/assets\/icon-128x128.png?rev=2550604\" alt=\"\">\t\t\t\t<\/div>\n<div>\n<h1 class=\"plugin-title\">Browser Screenshots<\/h1>\n<p>\t\t\t\t\t<span class=\"byline\">By <span class=\"author vcard\"><a target=\"_blank\" class=\"url fn n\" href=\"https:\/\/profiles.wordpress.org\/kevinlearynet\/\" rel=\"noopener\">Kevinleary.net<\/a><\/span><\/span>\n\t\t\t\t<\/div>\n<\/p><\/div>\n<div class=\"plugin-actions\">\n<div class=\"wp-block-button is-small plugin-download download-button\"><a target=\"_blank\" class=\"wp-block-button__link wp-element-button\" href=\"https:\/\/downloads.wordpress.org\/plugin\/browser-shots.zip\" rel=\"noopener\">Download<\/a><\/div>\n<\/p><\/div>\n<\/p><\/div>\n<\/header>\n<p><!-- .entry-header --><\/p>\n<p>\t<span id=\"description\"><\/span><br \/>\n\t<span id=\"reviews\"><\/span><br \/>\n\t<span id=\"installation\"><\/span><br \/>\n\t<span id=\"developers\"><\/span><br \/>\n\t<span id=\"advanced\" class=\"\"><\/span><br \/>\n\t<span id=\"section-links\"><\/p>\n<ul class=\"tabs clear\">\n<li id=\"tablink-description\"><a target=\"_blank\" href=\"https:\/\/wordpress.org\/plugins\/browser-shots\/#description\" rel=\"noopener\">Details<\/a><\/li>\n<li id=\"tablink-reviews\"><a target=\"_blank\" href=\"https:\/\/wordpress.org\/plugins\/browser-shots\/#reviews\" rel=\"noopener\">Reviews<\/a><\/li>\n<li id=\"tablink-installation\">\n\t\t\t\t<a target=\"_blank\" href=\"https:\/\/wordpress.org\/plugins\/browser-shots\/#installation\" rel=\"noopener\">Installation<\/a>\n\t\t\t<\/li>\n<li id=\"tablink-developers\"><a target=\"_blank\" href=\"https:\/\/wordpress.org\/plugins\/browser-shots\/#developers\" rel=\"noopener\">Development<\/a><\/li>\n<\/ul>\n<div id=\"link-support\">\n\t\t\t<a target=\"_blank\" href=\"https:\/\/wordpress.org\/support\/plugin\/browser-shots\/\" rel=\"noopener\">Support<\/a>\n\t\t<\/div>\n<p>\t<\/span><br \/>\n\t<script type=\"text\/javascript\">if ( '#changelog' == window.location.hash ) { window.setTimeout( function() { window.location.hash=\"#developers\"; }, 10 ); }<\/script><\/p>\n<div class=\"entry-content\">\n<div id=\"tab-description\" class=\"plugin-description section\">\n<h2 id=\"description-header\">Description<\/h2>\n<p>Use the <code>[browser-shot]<\/code> shortcode to automate the process of taking website screenshots. An icon is also added to the TinyMCE editor to make the shortcode creation process easy.<\/p>\n<p>The plugin uses the \u2018mshots\u2019 functionality, from WordPress.com, to automatically take screenshots of websites. This function is free for non-commercial use.<\/p>\n<p>The images are stored on the wordpress.com servers and are not saved onto your own website. The images are cached for roughly 24 hours before being generated again.<\/p>\n<h4>Shortcode Preview<\/h4>\n<pre><code>\/\/ basic shot 600px wide\n[browser-shot url=\"https:\/\/link-to-website\" width=\"600\"]\n\n\/\/ shot with link to other website\n[browser-shot url=\"https:\/\/link-to-website\" width=\"700\" link=\"https:\/\/www.binarymoon.co.uk\/\"]\n\n\/\/ shot with caption (uses default WordPress caption styles)\n[browser-shot url=\"https:\/\/link-to-website\" width=\"700\"]Add Caption[\/browser-shot]\n<\/code><\/pre>\n<h4>Available Parameters<\/h4>\n<ul>\n<li>url (required) \u2013 the url of the link to shorten<\/li>\n<li>width \u2013 the width of the image<\/li>\n<li>height \u2013 the height of the image<\/li>\n<li>alt \u2013 the image alt text<\/li>\n<li>link \u2013 where the image links. Left blank it will point to the website where the screenshot is being taken<\/li>\n<li>target \u2013 browser target. Set to _blank to open in a new window<\/li>\n<li>class \u2013 add a class to the browsershots wrapper<\/li>\n<li>image_class \u2013 change the default browsershots image class from alignnone to your chosen class<\/li>\n<li>display_link (true or false \u2013 default true) to display a link in your screenshot<\/li>\n<li>post_links (true or false \u2013 default false) to link to the permalink of the post the screenshot is on<\/li>\n<\/ul>\n<h4>Generating Screenshots with code<\/h4>\n<p>If you want to create screenshots in a theme using this plugin then you can do so using the <code>BrowserShots::get_shot<\/code> method.<\/p>\n<p>For example:<\/p>\n<pre><code>&lt;img src=&quot;https:\/\/wordpress.org\/plugins\/browser-shots\/&lt;?php echo BrowserShots::get_shot(&quot;https:\/\/prothemedesign.com&#039;, 600, 450 ); ?&gt;&quot; \/&gt;\n<\/code><\/pre>\n<p>Keep in mind that the plugin must be installed and activated for this to work.<\/p>\n<p>The get_shot method has 3 parameters.<\/p>\n<ol>\n<li>The url.<\/li>\n<li>The width.<\/li>\n<li>The height.<\/li>\n<\/ol>\n<p>The other parameters, from the shotcode, can be implemented manually when outputting the html.<\/p>\n<h4>Multisite Compatibility<\/h4>\n<p>The <em>Browser Shots<\/em> plugin is compatibly with WordPress Multisite, just use the <a target=\"_blank\" href=\"https:\/\/codex.wordpress.org\/Create_A_Network#WordPress_Plugins\" rel=\"nofollow ugc noopener\">Network Activate<\/a> feature to enable the shortcode on every site. If you only want to enable the shortcode for a specific site, activate the plugin for that site only.<\/p>\n<h4>More\u2026<\/h4>\n<ul>\n<li>The code can be found on <a target=\"_blank\" href=\"https:\/\/github.com\/BinaryMoon\/browser-shots\" rel=\"nofollow ugc noopener\">Github<\/a><\/li>\n<li>You can reach out to me with questions or problems on <a target=\"_blank\" href=\"https:\/\/twitter.com\/binarymoon\" rel=\"nofollow ugc noopener\">Twitter<\/a><\/li>\n<\/ul>\n<\/div>\n<div id=\"screenshots\" class=\"plugin-screenshots section\">\n<h2 id=\"screenshots-header\">Screenshots<\/h2>\n<ul class=\"plugin-screenshots\">\n<li>\n<figure><a target=\"_blank\" href=\"https:\/\/ps.w.org\/browser-shots\/assets\/screenshot-1.png?rev=2103016\" rel=\"nofollow noopener\"><img decoding=\"async\" class=\"screenshot\" src=\"https:\/\/ps.w.org\/browser-shots\/assets\/screenshot-1.png?rev=2103016\" alt=\"\"><\/a><figcaption>New Gutenberg block.<\/figcaption><\/figure>\n<\/li>\n<li>\n<figure><a target=\"_blank\" href=\"https:\/\/ps.w.org\/browser-shots\/assets\/screenshot-2.png?rev=2103016\" rel=\"nofollow noopener\"><img decoding=\"async\" class=\"screenshot\" src=\"https:\/\/ps.w.org\/browser-shots\/assets\/screenshot-2.png?rev=2103016\" alt=\"\"><\/a><figcaption>A view from inside of the WordPress TinyMCE editor.<\/figcaption><\/figure>\n<\/li>\n<li>\n<figure><a target=\"_blank\" href=\"https:\/\/ps.w.org\/browser-shots\/assets\/screenshot-3.png?rev=2103016\" rel=\"nofollow noopener\"><img decoding=\"async\" class=\"screenshot\" src=\"https:\/\/ps.w.org\/browser-shots\/assets\/screenshot-3.png?rev=2103016\" alt=\"\"><\/a><figcaption>The formatted front-end view of generated screenshots.<\/figcaption><\/figure>\n<\/li>\n<\/ul>\n<\/div>\n<div id=\"blocks\" class=\"plugin-blocks section\">\n<h2 id=\"blocks-header\">Blocks<\/h2>\n<p>This plugin provides 1 block.<\/p>\n<ul class=\"plugin-blocks-list\">\n<li class=\"plugin-blocks-list-item\">\n\t\t\t\t\t\t\t\t\t<span class=\"block-icon dashicons dashicons-block-default\"><\/span><br \/>\n\t\t\t\t\t\t\t\t<span class=\"block-title\">Browser Shots<\/span>\n\t\t\t\t\t\t\t<\/li>\n<\/ul>\n<\/div>\n<div id=\"tab-installation\" class=\"plugin-installation section\">\n<h2 id=\"installation-header\">Installation<\/h2>\n<ol>\n<li>Install easily with the WordPress plugin control panel or manually download the plugin and upload the folder <code>browser-shots<\/code> to the <code>\/wp-content\/plugins\/<\/code> directory<\/li>\n<li>Activate the plugin through the \u2018Plugins\u2019 menu in WordPress<\/li>\n<\/ol>\n<\/div>\n<div id=\"faq\" class=\"plugin-faq section\">\n<h2 id=\"faq-header\">FAQ<\/h2>\n<dl>\n<dt id=\"how%20does%20browser%20shots%20work%3F\">\n<h3>How does Browser Shots Work?<\/h3>\n<\/dt>\n<dd>\n<p>Browser Shots is based on the MShots functionality built and used by WordPress.com. It is <a target=\"_blank\" href=\"https:\/\/www.binarymoon.co.uk\/2010\/02\/automated-take-screenshots-website-free\/\" rel=\"nofollow ugc noopener\">used with permission from Matt Mullenweg<\/a>.<\/p>\n<\/dd>\n<dt id=\"is%20browser%20shots%20free%3F\">\n<h3>Is Browser Shots Free?<\/h3>\n<\/dt>\n<dd>\n<p>Yes. Since this service is run by Automattic this could change at any time.<\/p>\n<\/dd>\n<dt id=\"why%20don%27t%20the%20images%20display%20until%20i%20refresh%20the%20page%3F\">\n<h3>Why don\u2019t the images display until I refresh the page?<\/h3>\n<\/dt>\n<dd>\n<p>The images are generated on an external server and take a little while to be created. There is no way for the site to know if they have been created and so a loading image is shown.<\/p>\n<p>To reload the image you can press the \u2018refresh\u2019 button that appears in the toolbar when the shots block is selected. If the image is displayed on your website then reloading the page is the only option.<\/p>\n<\/dd>\n<dt id=\"can%20the%20images%20be%20saved%20to%20my%20server%3F\">\n<h3>Can the images be saved to my server?<\/h3>\n<\/dt>\n<dd>\n<p>No. The images are generated by a third party servive and stored on their servers. As such they control the images.<\/p>\n<\/dd>\n<dt id=\"can%20i%20see%20the%20mshots%20code%3F\">\n<h3>Can I see the MShots code?<\/h3>\n<\/dt>\n<dd>\n<p>Yep. <a target=\"_blank\" href=\"https:\/\/github.com\/Automattic\/mShots\" rel=\"nofollow ugc noopener\">The code for MShots id on Github<\/a>. Keep in mind that this is an Automattic project so, whilst you can look at the code and post bugs, it\u2019s unlikely they will answer support questions. However, if you have the techinical know-how you can fork the repository and make your own version.<\/p>\n<\/dd>\n<\/dl>\n<\/div>\n<div id=\"tab-reviews\" class=\"plugin-reviews section\">\n<h2 id=\"reviews-header\">Reviews<\/h2>\n<div class=\"plugin-reviews\">\n<article class=\"plugin-review\">\n<div class=\"review-avatar\">\n\t\t\t\t\t\t<img decoding=\"async\" alt=\"\" src=\"https:\/\/secure.gravatar.com\/avatar\/e8341ba54b86f232e661f113c902529271d91b1956a4f496118cd5c120dbc847?s=60&amp;d=retro&amp;r=g\" srcset=\"https:\/\/secure.gravatar.com\/avatar\/e8341ba54b86f232e661f113c902529271d91b1956a4f496118cd5c120dbc847?s=120&amp;d=retro&amp;r=g 2x\" class=\"avatar avatar-60 photo\" height=\"60\" width=\"60\">\t\t\t\t\t<\/div>\n<div class=\"review\">\n<header>\n<div class=\"header-top\">\n<div class=\"wporg-ratings\" aria-label=\"5 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"5\" style=\"color:#ffb900;\"><span class=\"dashicons dashicons-star-filled\"><\/span><span class=\"dashicons dashicons-star-filled\"><\/span><span class=\"dashicons dashicons-star-filled\"><\/span><span class=\"dashicons dashicons-star-filled\"><\/span><span class=\"dashicons dashicons-star-filled\"><\/span><\/div>\n<h3 class=\"review-title\"><a target=\"_blank\" class=\"url\" href=\"https:\/\/wordpress.org\/support\/topic\/works-2108\/\" rel=\"noopener\">Works<\/a><\/h3>\n<\/p><\/div>\n<div class=\"header-bottom\">\n\t\t\t\t\t\t\t\t<span class=\"review-author author vcard\"><a target=\"_blank\" href=\"https:\/\/profiles.wordpress.org\/pipi842\/\" title=\"Posts by pipi842\" rel=\"author noopener\">pipi842<\/a><\/span><br \/>\n\t\t\t\t\t\t\t\t<span class=\"review-date\">June 13, 2023<\/span><br \/>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"review-replies\">1 reply<\/span>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n<\/header>\n<div class=\"review-content\">Are there plans to replace the mshots api or at least provide alternative?<\/p>\n<p>Keep up the good work, your plugin saves a ton of time.<\/p><\/div>\n<\/p><\/div>\n<\/article>\n<article class=\"plugin-review\">\n<div class=\"review-avatar\">\n\t\t\t\t\t\t<img decoding=\"async\" alt=\"\" src=\"https:\/\/secure.gravatar.com\/avatar\/9a91528deeb53161704f4fa1b82687f084fb9ea390704058ffc5a5e2e3578e10?s=60&amp;d=retro&amp;r=g\" srcset=\"https:\/\/secure.gravatar.com\/avatar\/9a91528deeb53161704f4fa1b82687f084fb9ea390704058ffc5a5e2e3578e10?s=120&amp;d=retro&amp;r=g 2x\" class=\"avatar avatar-60 photo\" height=\"60\" width=\"60\">\t\t\t\t\t<\/div>\n<div class=\"review\">\n<header>\n<div class=\"header-top\">\n<div class=\"wporg-ratings\" aria-label=\"5 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"5\" style=\"color:#ffb900;\"><span class=\"dashicons dashicons-star-filled\"><\/span><span class=\"dashicons dashicons-star-filled\"><\/span><span class=\"dashicons dashicons-star-filled\"><\/span><span class=\"dashicons dashicons-star-filled\"><\/span><span class=\"dashicons dashicons-star-filled\"><\/span><\/div>\n<h3 class=\"review-title\"><a target=\"_blank\" class=\"url\" href=\"https:\/\/wordpress.org\/support\/topic\/great-screenshots-plugin\/\" rel=\"noopener\">Great screenshots plugin<\/a><\/h3>\n<\/p><\/div>\n<div class=\"header-bottom\">\n\t\t\t\t\t\t\t\t<span class=\"review-author author vcard\"><a target=\"_blank\" href=\"https:\/\/profiles.wordpress.org\/texasbiz\/\" title=\"Posts by Terry J\" rel=\"author noopener\">Terry J<\/a><\/span><br \/>\n\t\t\t\t\t\t\t\t<span class=\"review-date\">July 20, 2022<\/span>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n<\/header>\n<div class=\"review-content\">Works just fine and have not had a single issue.<\/p>\n<p>Hope development continues, not a better screenshots plugin in the repository.<\/p>\n<p>Thanks to the dev for releasing to us!<\/p><\/div>\n<\/p><\/div>\n<\/article>\n<article class=\"plugin-review\">\n<div class=\"review-avatar\">\n\t\t\t\t\t\t<img decoding=\"async\" alt=\"\" src=\"https:\/\/secure.gravatar.com\/avatar\/31aad8cf541e79f80f678f4e9b1d97691d5a918bbcd6d5b919d192f0c08afc38?s=60&amp;d=retro&amp;r=g\" srcset=\"https:\/\/secure.gravatar.com\/avatar\/31aad8cf541e79f80f678f4e9b1d97691d5a918bbcd6d5b919d192f0c08afc38?s=120&amp;d=retro&amp;r=g 2x\" class=\"avatar avatar-60 photo\" height=\"60\" width=\"60\">\t\t\t\t\t<\/div>\n<div class=\"review\">\n<header>\n<div class=\"header-top\">\n<div class=\"wporg-ratings\" aria-label=\"5 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"5\" style=\"color:#ffb900;\"><span class=\"dashicons dashicons-star-filled\"><\/span><span class=\"dashicons dashicons-star-filled\"><\/span><span class=\"dashicons dashicons-star-filled\"><\/span><span class=\"dashicons dashicons-star-filled\"><\/span><span class=\"dashicons dashicons-star-filled\"><\/span><\/div>\n<h3 class=\"review-title\"><a target=\"_blank\" class=\"url\" href=\"https:\/\/wordpress.org\/support\/topic\/works-like-a-charm-straight-out-of-the-box-y\/\" rel=\"noopener\">works like a charm, straight out of the box (y)<\/a><\/h3>\n<\/p><\/div>\n<div class=\"header-bottom\">\n\t\t\t\t\t\t\t\t<span class=\"review-author author vcard\"><a target=\"_blank\" href=\"https:\/\/profiles.wordpress.org\/elexem\/\" title=\"Posts by eLeXeM\" rel=\"author noopener\">eLeXeM<\/a><\/span><br \/>\n\t\t\t\t\t\t\t\t<span class=\"review-date\">June 12, 2022<\/span><br \/>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"review-replies\">1 reply<\/span>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n<\/header>\n<div class=\"review-content\">Thank you! \ud83d\ude42<\/div>\n<\/p><\/div>\n<\/article>\n<article class=\"plugin-review\">\n<div class=\"review-avatar\">\n\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" alt=\"\" src=\"https:\/\/secure.gravatar.com\/avatar\/43e355d04c60b48cf9ece4ac18a88e11f0d01aa2719c4e8f785c4beb1901ebcd?s=60&amp;d=retro&amp;r=g\" srcset=\"https:\/\/secure.gravatar.com\/avatar\/43e355d04c60b48cf9ece4ac18a88e11f0d01aa2719c4e8f785c4beb1901ebcd?s=120&amp;d=retro&amp;r=g 2x\" class=\"avatar avatar-60 photo\" height=\"60\" width=\"60\">\t\t\t\t\t<\/div>\n<div class=\"review\">\n<header>\n<div class=\"header-top\">\n<div class=\"wporg-ratings\" aria-label=\"5 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"5\" style=\"color:#ffb900;\"><span class=\"dashicons dashicons-star-filled\"><\/span><span class=\"dashicons dashicons-star-filled\"><\/span><span class=\"dashicons dashicons-star-filled\"><\/span><span class=\"dashicons dashicons-star-filled\"><\/span><span class=\"dashicons dashicons-star-filled\"><\/span><\/div>\n<h3 class=\"review-title\"><a target=\"_blank\" class=\"url\" href=\"https:\/\/wordpress.org\/support\/topic\/perfect-8131\/\" rel=\"noopener\">Perfect<\/a><\/h3>\n<\/p><\/div>\n<div class=\"header-bottom\">\n\t\t\t\t\t\t\t\t<span class=\"review-author author vcard\"><a target=\"_blank\" href=\"https:\/\/profiles.wordpress.org\/koronavirusu\/\" title=\"Posts by koronavirusu\" rel=\"author noopener\">koronavirusu<\/a><\/span><br \/>\n\t\t\t\t\t\t\t\t<span class=\"review-date\">January 27, 2021<\/span>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n<\/header>\n<div class=\"review-content\">Great plugin. Thanks<\/div>\n<\/p><\/div>\n<\/article>\n<article class=\"plugin-review\">\n<div class=\"review-avatar\">\n\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" alt=\"\" src=\"https:\/\/secure.gravatar.com\/avatar\/b22693a76a8fddfbab60db58d1799928c5a3c581dab5eed1b303c41f63f82b52?s=60&amp;d=retro&amp;r=g\" srcset=\"https:\/\/secure.gravatar.com\/avatar\/b22693a76a8fddfbab60db58d1799928c5a3c581dab5eed1b303c41f63f82b52?s=120&amp;d=retro&amp;r=g 2x\" class=\"avatar avatar-60 photo\" height=\"60\" width=\"60\">\t\t\t\t\t<\/div>\n<div class=\"review\">\n<header>\n<div class=\"header-top\">\n<div class=\"wporg-ratings\" aria-label=\"5 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"5\" style=\"color:#ffb900;\"><span class=\"dashicons dashicons-star-filled\"><\/span><span class=\"dashicons dashicons-star-filled\"><\/span><span class=\"dashicons dashicons-star-filled\"><\/span><span class=\"dashicons dashicons-star-filled\"><\/span><span class=\"dashicons dashicons-star-filled\"><\/span><\/div>\n<h3 class=\"review-title\"><a target=\"_blank\" class=\"url\" href=\"https:\/\/wordpress.org\/support\/topic\/too-good-to-be-true-and-free\/\" rel=\"noopener\">Too good to be true, and free!<\/a><\/h3>\n<\/p><\/div>\n<div class=\"header-bottom\">\n\t\t\t\t\t\t\t\t<span class=\"review-author author vcard\"><a target=\"_blank\" href=\"https:\/\/profiles.wordpress.org\/javalinex\/\" title=\"Posts by Ropebu\" rel=\"author noopener\">Ropebu<\/a><\/span><br \/>\n\t\t\t\t\t\t\t\t<span class=\"review-date\">January 27, 2021<\/span>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n<\/header>\n<div class=\"review-content\">Awesome plugin, ideal for automatic websites. Using the php manual implementation combined with custom fields is amazing and saves a ton of time.<\/div>\n<\/p><\/div>\n<\/article>\n<article class=\"plugin-review\">\n<div class=\"review-avatar\">\n\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" alt=\"\" src=\"https:\/\/secure.gravatar.com\/avatar\/b17f7925a299acb11b070557652fe539c997a756d1f4b6b96cd20f0edb158aa5?s=60&amp;d=retro&amp;r=g\" srcset=\"https:\/\/secure.gravatar.com\/avatar\/b17f7925a299acb11b070557652fe539c997a756d1f4b6b96cd20f0edb158aa5?s=120&amp;d=retro&amp;r=g 2x\" class=\"avatar avatar-60 photo\" height=\"60\" width=\"60\">\t\t\t\t\t<\/div>\n<div class=\"review\">\n<header>\n<div class=\"header-top\">\n<div class=\"wporg-ratings\" aria-label=\"5 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"5\" style=\"color:#ffb900;\"><span class=\"dashicons dashicons-star-filled\"><\/span><span class=\"dashicons dashicons-star-filled\"><\/span><span class=\"dashicons dashicons-star-filled\"><\/span><span class=\"dashicons dashicons-star-filled\"><\/span><span class=\"dashicons dashicons-star-filled\"><\/span><\/div>\n<h3 class=\"review-title\"><a target=\"_blank\" class=\"url\" href=\"https:\/\/wordpress.org\/support\/topic\/i-like-it-759\/\" rel=\"noopener\">I like it<\/a><\/h3>\n<\/p><\/div>\n<div class=\"header-bottom\">\n\t\t\t\t\t\t\t\t<span class=\"review-author author vcard\"><a target=\"_blank\" href=\"https:\/\/profiles.wordpress.org\/wasanajones\/\" title=\"Posts by wasanajones\" rel=\"author noopener\">wasanajones<\/a><\/span><br \/>\n\t\t\t\t\t\t\t\t<span class=\"review-date\">August 3, 2020<\/span><br \/>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"review-replies\">1 reply<\/span>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n<\/header>\n<div class=\"review-content\">yep, recommneded<\/div>\n<\/p><\/div>\n<\/article><\/div>\n<p>\t\t<a target=\"_blank\" class=\"reviews-link\" href=\"https:\/\/wordpress.org\/support\/plugin\/browser-shots\/reviews\/\" rel=\"noopener\"><br \/>\n\t\t\tRead all 19 reviews\t\t<\/a><\/div>\n<div id=\"tab-developers\" class=\"plugin-developers section\">\n<h2 id=\"developers-header\">Contributors &amp; Developers<\/h2>\n<div class=\"plugin-contributors\">\n<p>\u201cBrowser Screenshots\u201d is open source software. The following people have contributed to this plugin.<\/p>\n<p><span class=\"screen-reader-text\">Contributors<\/span><\/p>\n<ul id=\"contributors-list\" class=\"contributors-list\">\n<li>\n\t\t\t\t<img loading=\"lazy\" decoding=\"async\" alt=\"\" src=\"https:\/\/secure.gravatar.com\/avatar\/44e5f9de90e55239b34adb3c6792cec54440a333ae4351d1950ab37cadbb4b94?s=32&amp;d=mm&amp;r=g\" srcset=\"https:\/\/secure.gravatar.com\/avatar\/44e5f9de90e55239b34adb3c6792cec54440a333ae4351d1950ab37cadbb4b94?s=64&amp;d=mm&amp;r=g 2x\" class=\"avatar avatar-32 photo\" height=\"32\" width=\"32\">\t\t\t\t<a target=\"_blank\" href=\"https:\/\/profiles.wordpress.org\/binarymoon\/\" rel=\"noopener\"><br \/>\n\t\t\t\t\tbinarymoon\t\t\t\t<\/a>\n\t\t\t<\/li>\n<li>\n\t\t\t\t<img loading=\"lazy\" decoding=\"async\" alt=\"\" src=\"https:\/\/secure.gravatar.com\/avatar\/fffc250933e1c0829279d4954c45a9b2b0637ebe68e1c27125b06cada3037fe6?s=32&amp;d=mm&amp;r=g\" srcset=\"https:\/\/secure.gravatar.com\/avatar\/fffc250933e1c0829279d4954c45a9b2b0637ebe68e1c27125b06cada3037fe6?s=64&amp;d=mm&amp;r=g 2x\" class=\"avatar avatar-32 photo\" height=\"32\" width=\"32\">\t\t\t\t<a target=\"_blank\" href=\"https:\/\/profiles.wordpress.org\/kevinlearynet\/\" rel=\"noopener\"><br \/>\n\t\t\t\t\tKevinleary.net\t\t\t\t<\/a>\n\t\t\t<\/li>\n<li>\n\t\t\t\t<img loading=\"lazy\" decoding=\"async\" alt=\"\" src=\"https:\/\/secure.gravatar.com\/avatar\/b1f98471cbb84ddeb26979e992e4492775c4cbd8ee643454790c7a8f42c67e38?s=32&amp;d=mm&amp;r=g\" srcset=\"https:\/\/secure.gravatar.com\/avatar\/b1f98471cbb84ddeb26979e992e4492775c4cbd8ee643454790c7a8f42c67e38?s=64&amp;d=mm&amp;r=g 2x\" class=\"avatar avatar-32 photo\" height=\"32\" width=\"32\">\t\t\t\t<a target=\"_blank\" href=\"https:\/\/profiles.wordpress.org\/ronalfy\/\" rel=\"noopener\"><br \/>\n\t\t\t\t\tRonald Huereca\t\t\t\t<\/a>\n\t\t\t<\/li>\n<\/ul><\/div>\n<div class=\"plugin-development\">\n<p>\u201cBrowser Screenshots\u201d has been translated into 8 locales. Thank you to <a target=\"_blank\" href=\"https:\/\/translate.wordpress.org\/projects\/wp-plugins\/browser-shots\/contributors\" rel=\"noopener\">the translators<\/a> for their contributions.<\/p>\n<p><a target=\"_blank\" href=\"https:\/\/translate.wordpress.org\/projects\/wp-plugins\/browser-shots\" rel=\"noopener\">Translate \u201cBrowser Screenshots\u201d into your language.<\/a><\/p>\n<h3>Interested in development?<\/h3>\n<p><a target=\"_blank\" href=\"https:\/\/plugins.trac.wordpress.org\/browser\/browser-shots\/\" rel=\"noopener\" class=\"broken_link\">Browse the code<\/a>, check out the <a target=\"_blank\" href=\"https:\/\/plugins.svn.wordpress.org\/browser-shots\/\" rel=\"noopener\">SVN repository<\/a>, or subscribe to the <a target=\"_blank\" href=\"https:\/\/plugins.trac.wordpress.org\/log\/browser-shots\/\" rel=\"noopener\" class=\"broken_link\">development log<\/a> by <a target=\"_blank\" href=\"https:\/\/plugins.trac.wordpress.org\/log\/browser-shots\/?limit=100&amp;mode=stop_on_copy&amp;format=rss\" rel=\"noopener\" class=\"broken_link\">RSS<\/a>.<\/p>\n<\/div>\n<\/div>\n<div id=\"tab-changelog\" class=\"plugin-changelog section\">\n<h2 id=\"changelog-header\">Changelog<\/h2>\n<h4>1.7.7 \u2013 22nd November 2021<\/h4>\n<ul>\n<li>Fix broken images (the image url moved \u2013 thanks @idanka for finding the fix).<\/li>\n<li>Small tweaks and improvements to the UX<\/li>\n<li>Update scripts and packages to the latest version.<\/li>\n<\/ul>\n<h4>1.7.6 \u2013 18th June 2021<\/h4>\n<ul>\n<li>Fix possible XSS vulnerability as reported by WPScan.<\/li>\n<\/ul>\n<h4>1.7.5 \u2013 27th January 2021<\/h4>\n<ul>\n<li>Fix variable comparison that could cause errors in some situations.<\/li>\n<li>Add missing text domain for translations.<\/li>\n<\/ul>\n<h4>1.7.4 \u2013 15th July 2019<\/h4>\n<ul>\n<li>Add a $shortcode parameter to the shortcode_atts function call so that the shortcode properties can be filtered.<\/li>\n<li>Added option to allow screenshot to link to the post\u2019s URL.<\/li>\n<li>Make get_shots static so it can be used outside of the shortcode\/ gutenberg block.<\/li>\n<\/ul>\n<h4>1.7.3 \u2013 12th June 2019<\/h4>\n<ul>\n<li>Add PERMALINK as a link property. If you set the link url to PERMALINK then the url will point to the currrent page or post.<\/li>\n<li>Improve the default alt text. Previously it would display the url for the screenshot, but this could be messy, and is not actually useful. Now displays \u201cScreenshot from domain-name\u201d.<\/li>\n<\/ul>\n<h4>1.7.2 \u2013 11th June 2019<\/h4>\n<ul>\n<li>Ensuring display_link is a boolean in the shortcode.<\/li>\n<li>Code formatting and cleanup.<\/li>\n<\/ul>\n<h4>1.7.1 \u2013 11th June 2019<\/h4>\n<ul>\n<li>Add a new parameter display_link that allows you to disable the link around the screenshot. Defaults to true. Set to false to remove the link.<\/li>\n<li>Add some placeholder text to the input fields to make it clearer what is expected.<\/li>\n<li>Change the rel link property to a toggle for one click changes.<\/li>\n<\/ul>\n<h4>1.7 \u2013 8th June 2019<\/h4>\n<ul>\n<li>Add Gutenberg block for including Browser Shots.<\/li>\n<li>Fix image alignment so that it works properly :).<\/li>\n<\/ul>\n<h4>1.6 \u2013 30th May 2019<\/h4>\n<ul>\n<li>Add rel property to shortcode so that links can include rel=\u201dnofollow\u201d or similar.<\/li>\n<li>Fix output of target attribute.<\/li>\n<li>Tidy codes.<\/li>\n<\/ul>\n<h4>1.5.2 \u2013 7th January 2017<\/h4>\n<ul>\n<li>Improve output html to reduce likelihood of html being modified by a plugin<\/li>\n<li>Swap urlencode for rawurlencode<\/li>\n<li>Switch to yoda conditions<\/li>\n<\/ul>\n<h4>1.5.1<\/h4>\n<ul>\n<li>add two new class properties. One for the container, one for the image<\/li>\n<li>lots of code tidying, and refactoring. Simpler, faster, and more secure<\/li>\n<li>new tinymce icon that fits the style of the editor much better \ud83d\ude42<\/li>\n<\/ul>\n<h4>1.5<\/h4>\n<ul>\n<li>update localisation strings so that things can be translated more easily<\/li>\n<\/ul>\n<h4>1.4<\/h4>\n<ul>\n<li>Update the website screen capture path. This ensures the code will work properly on secure domains<\/li>\n<li>Add some additional value escaping for extra security<\/li>\n<\/ul>\n<h4>1.3.2<\/h4>\n<ul>\n<li>Fix a couple of small javascript bugs (thanks again to Ciprian Dracea)<\/li>\n<\/ul>\n<h4>1.3.1<\/h4>\n<ul>\n<li>Fix a couple of small bugs with the visual editor and add support for all shortcode parameters<\/li>\n<\/ul>\n<h4>1.3<\/h4>\n<ul>\n<li>Make the visual editor work again (thanks to Ciprian Dracea for the report and the code help!)<\/li>\n<li>add a new pop up box for the shortcode properties in visual editor mode<\/li>\n<\/ul>\n<h4>1.2<\/h4>\n<ul>\n<li>Add \u2018link\u2019 attribute. Allows you to change the url that the screenshot links to<\/li>\n<li>Sanitize the height attribute and fix a small height related PHP error<\/li>\n<li>Add support for captions<\/li>\n<li>Add target attribute for opening links in new windows<\/li>\n<\/ul>\n<h4>1.1<\/h4>\n<ul>\n<li>Add \u2018height\u2019 attribute to the TinyMCE prompts<\/li>\n<li>Allow users to override \u2018height\u2019 attribute in [browser-shot] shortcode<\/li>\n<\/ul>\n<h4>1.0<\/h4>\n<ul>\n<li>Initial public release to the WordPress plugin repository<\/li>\n<\/ul>\n<\/div><\/div>\n<p><!-- .entry-content --><\/p>\n<p>\t<!-- .entry-meta --><br \/>\n<\/article>\n<p><script async src=\"https:\/\/platform.twitter.com\/widgets.js\" charset=\"utf-8\"><\/script><br \/>\n<br \/><br \/>\n<br \/><a href=\"https:\/\/wordpress.org\/plugins\/browser-shots\/\" target=\"_blank\" rel=\"noopener\">Source link <\/a><\/p>","protected":false},"excerpt":{"rendered":"<p>Browser Screenshots By Kevinleary.net Download Details Reviews Installation Development Support Description Use the [browser-shot] shortcode to automate the process of taking website screenshots. An icon is also added to the TinyMCE editor to make the shortcode creation process easy. The plugin uses the \u2018mshots\u2019 functionality, from WordPress.com, to automatically take screenshots of websites. This function [&hellip;]<\/p>","protected":false},"author":355,"featured_media":5308,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"give_campaign_id":0,"footnotes":""},"categories":[42,39,40],"tags":[3319,3320],"class_list":["post-5307","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-block-plugin","category-lite-version","category-wp-plugin-solution","tag-browser","tag-screenshots"],"acf":[],"fifu_image_url":"https:\/\/ps.w.org\/browser-shots\/assets\/banner-772x250.png?rev=2550604","_links":{"self":[{"href":"https:\/\/s-o-s.net\/en_gb\/wp-json\/wp\/v2\/posts\/5307","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/s-o-s.net\/en_gb\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/s-o-s.net\/en_gb\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/s-o-s.net\/en_gb\/wp-json\/wp\/v2\/users\/355"}],"replies":[{"embeddable":true,"href":"https:\/\/s-o-s.net\/en_gb\/wp-json\/wp\/v2\/comments?post=5307"}],"version-history":[{"count":0,"href":"https:\/\/s-o-s.net\/en_gb\/wp-json\/wp\/v2\/posts\/5307\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/s-o-s.net\/en_gb\/wp-json\/wp\/v2\/media\/5308"}],"wp:attachment":[{"href":"https:\/\/s-o-s.net\/en_gb\/wp-json\/wp\/v2\/media?parent=5307"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/s-o-s.net\/en_gb\/wp-json\/wp\/v2\/categories?post=5307"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/s-o-s.net\/en_gb\/wp-json\/wp\/v2\/tags?post=5307"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}