[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"$fpkepHV5-_lqQgDtudsDZgcVCKo12M5KlmbdrcpqBvwI":3},{"slug":4,"display_name":5,"profile_url":6,"plugin_count":7,"total_installs":8,"avg_security_score":9,"avg_patch_time_days":10,"trust_score":11,"computed_at":12,"plugins":13},"mindshare","Mindshare Labs, Inc.","https:\u002F\u002Fprofiles.wordpress.org\u002Fmindshare\u002F",5,770,85,30,84,"2026-04-04T05:00:55.212Z",[14,38,54,75,94],{"slug":15,"name":16,"version":17,"author":5,"author_profile":6,"description":18,"short_description":19,"active_installs":20,"downloaded":21,"rating":22,"num_ratings":23,"last_updated":24,"tested_up_to":25,"requires_at_least":26,"requires_php":26,"tags":27,"homepage":33,"download_link":34,"security_score":9,"vuln_count":35,"unpatched_count":35,"last_vuln_date":36,"fetched_at":37},"php-browser-detection","PHP Browser Detection","3.1.8","\u003Cp>Version 3 adds support for is_tablet(), is_desktop(), and is_browser() as well as numerous bug fixes and code improvements. As of version 3.1.2 automatic updates of browscap.ini are disabeld until we can deal with memory usage issues.\u003C\u002Fp>\n\u003Cp>PHP Browser Detection is a WordPress plugin used to detect a user’s browser. It can be used to send conditional CSS files for Internet Explorer, display different content or custom messages anywhere on the page, or to swap out Flash for an image for iPhones.\u003C\u002Fp>\n\u003Cp>\u003Cstrong>Template Tags:\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Cp>\u003Cem>Test for specific browsers:\u003C\u002Fem>\u003C\u002Fp>\n\u003Cp>$version is optional. Include a major version number, a single integer – 3,4,5, etc… Or leave it empty to test for any version.\u003C\u002Fp>\n\u003Cpre>\u003Ccode>\u003C?php if(is_firefox($version)) { \u002F* your code here *\u002F }; ?>\n\n\u003C?php if(is_safari($version)) { \u002F* your code here *\u002F }; ?>\n\n\u003C?php if(is_chrome($version)) { \u002F* your code here *\u002F }; ?>\n\n\u003C?php if(is_opera($version)) { \u002F* your code here *\u002F }; ?>\n\n\u003C?php if(is_ie($version)) { \u002F* your code here *\u002F }; ?>\n\n\u003C?php if(is_browser($name, $version)) { \u002F* your code here *\u002F }; ?>\n\u003C\u002Fcode>\u003C\u002Fpre>\n\u003Cp>\u003Cem>Check for mobile, tablet, iPhone, iPad, iPod, etc…\u003C\u002Fem>\u003C\u002Fp>\n\u003Cpre>\u003Ccode>\u003C?php if(is_desktop()) { \u002F* your code here *\u002F }; ?>\n\n\u003C?php if(is_tablet()) { \u002F* your code here *\u002F }; ?>\n\n\u003C?php if(is_iphone($version)) { \u002F* your code here *\u002F }; ?>\n\n\u003C?php if(is_ipad($version)) { \u002F* your code here *\u002F }; ?>\n\n\u003C?php if(is_ipod($version)) { \u002F* your code here *\u002F }; ?>\n\n\u003C?php if(is_mobile()) { \u002F* your code here *\u002F }; ?>\n\u003C\u002Fcode>\u003C\u002Fpre>\n\u003Cp>\u003Cem>Check for greater than \u002F less than a specific version…\u003C\u002Fem>\u003C\u002Fp>\n\u003Cp>Less than or equal to Firefox 19:\u003Cbr \u002F>\n    \u003C ?php if(is_firefox() && get_browser_version() \u003C\u002Fp>\n\u003Cp>Less than or equal to IE 10:\u003Cbr \u002F>\n    \u003C ?php if(is_ie() && get_browser_version() \u003C\u002Fp>\n\u003Cp>Greater than or equal to Safari 4:\u003Cbr \u002F>\n    = 4) { \u002F* your code here *\u002F }; ?>\u003C\u002Fp>\n\u003Cp>these are just a few examples, but this syntax will work for any browser or version.\u003C\u002Fp>\n\u003Cp>\u003Cem>Check specific versions…\u003C\u002Fem>\u003C\u002Fp>\n\u003Cp>Is the browser IE6?\n    \u003C\u002Fp>\n\u003Cp>Is the browser IE10?\n    \u003C\u002Fp>\n\u003Cp>\u003Cstrong>Or you can get all the info and do what you want with it:\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Cp>\u003Cem>Get just the name…\u003C\u002Fem>\u003C\u002Fp>\n\u003Cpre>\u003Ccode>\u003C?php $browser_name = get_browser_name(); ?>\n\u003C\u002Fcode>\u003C\u002Fpre>\n\u003Cp>Get the full version number – 3.2, 5.0, etc…\u003C\u002Fp>\n\u003Cpre>\u003Ccode>\u003C?php $browser_version = get_browser_version(); ?>\n\u003C\u002Fcode>\u003C\u002Fpre>\n\u003Cp>\u003Cem>Or get it all in array…\u003C\u002Fem>\u003C\u002Fp>\n\u003Cpre>\u003Ccode>\u003C?php $browser_info = php_browser_info(); ?>\n\u003C\u002Fcode>\u003C\u002Fpre>\n\u003Cp>\u003Cstrong>Shortcodes:\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Cp>\u003Cem>Test for specific browsers:\u003C\u002Fem>\u003C\u002Fp>\n\u003Cpre>\u003Ccode>[is_browser name=\"chrome\" version=\"45\"]\n\u003Cp>You are using Chrome 45 or above.\u003C\u002Fp>\n[\u002Fis_browser]\n\u003C\u002Fcode>\u003C\u002Fpre>\n\u003Cp>\u003Cem>Output all browser info:\u003C\u002Fem>\u003C\u002Fp>\n\u003Cpre>\u003Ccode>[browser_info]\n\u003C\u002Fcode>\u003C\u002Fpre>\n","PHP Browser Detection is a WordPress plugin used to detect a user's browser. Please report any bugs on the support forums.",600,46465,82,16,"2015-09-08T03:12:00.000Z","4.3.34","",[28,29,30,31,32],"browser","browser-detection","internet-explorer","iphone","php","http:\u002F\u002Fwordpress.org\u002Fextend\u002Fplugins\u002Fphp-browser-detection\u002F","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fphp-browser-detection.3.1.8.zip",0,null,"2026-03-15T15:16:48.613Z",{"slug":39,"name":40,"version":41,"author":5,"author_profile":6,"description":42,"short_description":43,"active_installs":44,"downloaded":45,"rating":35,"num_ratings":35,"last_updated":46,"tested_up_to":47,"requires_at_least":48,"requires_php":26,"tags":49,"homepage":26,"download_link":53,"security_score":9,"vuln_count":35,"unpatched_count":35,"last_vuln_date":36,"fetched_at":37},"redirector-mod","Redirector Mod","1.0","\u003Cp>With this Plugin you can redirect a page in your WordPress installation to any other URL, to a page in your WordPress installation or to the first child page.\u003C\u002Fp>\n\u003Cp>This plugin is a fork of Redirector by Ralf Hortt. It has been updated\u003Cbr \u002F>\nfor WP 3.0 and does not automatically insert ‘http:’ before any custom\u003Cbr \u002F>\nredirect thus enabling use of partial URIs and query string as your\u003Cbr \u002F>\nredirect rather than fully qualified URLs.\u003C\u002Fp>\n","Redirect a page to an URL or WordPress page.",90,5231,"2010-06-22T19:51:00.000Z","3.0.5","2.6",[50,51,52],"page","redirect","redirector","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fredirector-mod.zip",{"slug":55,"name":56,"version":57,"author":5,"author_profile":6,"description":58,"short_description":59,"active_installs":60,"downloaded":61,"rating":62,"num_ratings":63,"last_updated":64,"tested_up_to":65,"requires_at_least":66,"requires_php":26,"tags":67,"homepage":73,"download_link":74,"security_score":9,"vuln_count":35,"unpatched_count":35,"last_vuln_date":36,"fetched_at":37},"wp-cdnjs","WP cdnjs","0.4.0","\u003Cp>Speed up your site by using the powerfull and free CDNjs. This plugin Allows you to search all http:\u002F\u002Fcdnjs.com libraries and include them on your site.\u003Cbr \u002F>\nProudly updated by \u003Ca href=\"http:\u002F\u002Fwww.it-cooking.com\u002F\" rel=\"nofollow ugc\">Audioscavenger\u003C\u002Fa>.\u003C\u002Fp>\n\u003Cp>\u003Cstrong>Requires PHP 5.3 or newer\u003C\u002Fstrong>\n   \u003C\u002Fp>\n\u003Ch4>Browse by Name and Description\u003C\u002Fh4>\n\u003Cp>When browsing, the search key word look in the library names and description.\u003C\u002Fp>\n\u003Cul>\n\u003Cli>Shows library name\u003C\u002Fli>\n\u003Cli>Shows description\u003C\u002Fli>\n\u003Cli>Shows how many versions are available\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch4>Choose the Righ Version\u003C\u002Fh4>\n\u003Cp>Stop worrying about incompatibilities, WP cdnjs let you chose the version you really need!\u003C\u002Fp>\n\u003Cul>\n\u003Cli>Latest version selected by default\u003C\u002Fli>\n\u003Cli>Minified version selected by default\u003C\u002Fli>\n\u003Cli>Allows you to include the (non)minified version for debugging purposes\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch4>Add More Assets\u003C\u002Fh4>\n\u003Cp>Among the libraries served by CDNjs, you can add the assets related.\u003C\u002Fp>\n\u003Cul>\n\u003Cli>Shows all the assets associated with a library version\u003C\u002Fli>\n\u003Cli>Allows you to change the main asset used\u003C\u002Fli>\n\u003Cli>Allows you to add and remove assets\u003C\u002Fli>\n\u003Cli>Shows the assets already used in grey to avoid addind duplicates\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch4>Manage Priorities\u003C\u002Fh4>\n\u003Cp>With an easy drag&drop, manage the order in which your libraries will be loaded.\u003C\u002Fp>\n\u003Cul>\n\u003Cli>Easy drag&drop\u003C\u002Fli>\n\u003Cli>Header\u002FFooter choice\u003C\u002Fli>\n\u003Cli>Enable\u002FDisable option\u003C\u002Fli>\n\u003C\u002Ful>\n","Integrates easily CSS and JavaScript Libraries hosted by CDNjs.com. Browse, select version and sub-assets to fit your needs.",50,6021,100,3,"2020-03-20T04:48:00.000Z","5.3.21","5.1",[68,69,70,71,72],"cdnjs","cloudflare","css","js","scripts","http:\u002F\u002Fwordpress.org\u002Fplugins\u002Fwp-cdnjs\u002F","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fwp-cdnjs.0.4.0.zip",{"slug":76,"name":77,"version":78,"author":5,"author_profile":6,"description":79,"short_description":80,"active_installs":81,"downloaded":82,"rating":83,"num_ratings":7,"last_updated":84,"tested_up_to":25,"requires_at_least":85,"requires_php":26,"tags":86,"homepage":92,"download_link":93,"security_score":9,"vuln_count":35,"unpatched_count":35,"last_vuln_date":36,"fetched_at":37},"subscribr","Subscribr","0.1.9.1","\u003Cp>Allows WordPress users to subscribe to email notifications for new posts, pages, and custom types, filterable by taxonomies. The plugin supports tons of actions and filters too! More documentation will be coming soon.\u003C\u002Fp>\n\u003Ch4>Features\u003C\u002Fh4>\n\u003Cp>We are now working on a major rewrite of this plugin which will allow us to more rapidly roll out new features. Stay tuned for version 0.2.\u003C\u002Fp>\n\u003Cul>\n\u003Cli>send mail as plain text or HTML (by user preference)\u003C\u002Fli>\n\u003Cli>integrated email template editor\u003C\u002Fli>\n\u003Cli>option to use PHP template instead of integrated template editor\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch4>Upcoming Features\u003C\u002Fh4>\n\u003Cul>\n\u003Cli>option to separate different taxonomies on profile update\u003C\u002Fli>\n\u003Cli>widget\u003C\u002Fli>\n\u003Cli>option to post notifications for update as well as new posts\u003C\u002Fli>\n\u003Cli>html\u002Fplain text options\u003C\u002Fli>\n\u003Cli>scheduling options \u002F digest mode\u003C\u002Fli>\n\u003Cli>analytics options\u003C\u002Fli>\n\u003Cli>minimum role option for notifications\u003C\u002Fli>\n\u003Cli>double opt-in\u003C\u002Fli>\n\u003Cli>SMS text messages\u003C\u002Fli>\n\u003Cli>integration with 3rd-party SMTP servers and\u002For advanced SMTP settings\u003C\u002Fli>\n\u003Cli>integration with MailChimp\u002FMandrill\u003C\u002Fli>\n\u003Cli>integration with Constant Contact\u003C\u002Fli>\n\u003Cli>integration with Aweber\u003C\u002Fli>\n\u003Cli>notification on site (like Facebook)\u003C\u002Fli>\n\u003Cli>subscriber management to settings\u003C\u002Fli>\n\u003Cli>CSV subscriber export\u003C\u002Fli>\n\u003Cli>list management for Roles, use-case wholesale \u002F retail\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Cp>Support development with a donation and let us know what features are most important to you!\u003C\u002Fp>\n","Allows WordPress users to subscribe to notifications for new posts, pages, and custom types, filterable by taxonomies.",20,6372,96,"2015-08-10T15:33:00.000Z","3.8",[87,88,89,90,91],"email","notifications","notify","subscribe","subscriptions","https:\u002F\u002Fmindsharelabs.com\u002Fdownloads\u002Fsubscribr\u002F","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fsubscribr.0.1.9.1.zip",{"slug":95,"name":96,"version":97,"author":5,"author_profile":6,"description":98,"short_description":99,"active_installs":100,"downloaded":101,"rating":102,"num_ratings":103,"last_updated":104,"tested_up_to":25,"requires_at_least":105,"requires_php":26,"tags":106,"homepage":111,"download_link":112,"security_score":9,"vuln_count":35,"unpatched_count":35,"last_vuln_date":36,"fetched_at":37},"jquery-notify","jQuery Notify","0.2","\u003Cp>jQuery Notify: a fast and easy way to display notifications on your website. Some possible uses:\u003C\u002Fp>\n\u003Cul>\n\u003Cli>Form validation (“Please fill out all of the fields.”)\u003C\u002Fli>\n\u003Cli>A welcome message the first time someone visits your site.\u003C\u002Fli>\n\u003Cli>Newsletter subscription form\u003C\u002Fli>\n\u003Cli>Submission confirmation: (“Message sent. We’ll be in touch soon.”)\u003C\u002Fli>\n\u003Cli>Breaking news, updates, special offers\u003C\u002Fli>\n\u003Cli>Advertising\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Cp>Try a \u003Ca href=\"http:\u002F\u002Fjquery-notify.mindsharelabs.com\u002F\" rel=\"nofollow ugc\">demo\u003C\u002Fa>.\u003C\u002Fp>\n\u003Ch4>Features:\u003C\u002Fh4>\n\u003Cul>\n\u003Cli>Can be used on a per-page basis with a shortcode, or embedded directly into your template\u003C\u002Fli>\n\u003Cli>Elegantly styled and animated in W3C valid HTML5 and CSS3, without any images\u003C\u002Fli>\n\u003Cli>Animation speed and delay settings available from the shortcode\u003C\u002Fli>\n\u003Cli>Comes with four styles: ‘default’ (blue), ‘error’ (red), ‘warning’ (orange), and ‘success’ (green)\u003C\u002Fli>\n\u003Cli>\n\u003Cp>Supports unlimited user-created styles\u003C\u002Fp>\n\u003Cp>We’ll be working to add new features as we think of them. Please comment in the forum if you have any\u003Cbr \u002F>\nfeature requests.\u003C\u002Fp>\n\u003C\u002Fli>\n\u003C\u002Ful>\n","An attractive, lightweight, and highly configurable jQuery notification pane.",10,5818,60,1,"2015-08-10T15:25:00.000Z","3.0",[107,108,109,89,110],"jquery","message","notification","popup","http:\u002F\u002Fjquery-notify.mindsharelabs.com\u002F","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fjquery-notify.0.4.zip"]