{"id":250,"date":"2023-11-02T18:44:31","date_gmt":"2023-11-02T22:44:31","guid":{"rendered":"https:\/\/browsit.org\/blog\/?p=250"},"modified":"2026-04-15T16:11:00","modified_gmt":"2026-04-15T20:11:00","slug":"how-to-find-quality-minecraft-plugins","status":"publish","type":"post","link":"https:\/\/browsit.org\/blog\/uncategorized\/how-to-find-quality-minecraft-plugins\/","title":{"rendered":"How to find quality Minecraft plugins?"},"content":{"rendered":"\n<p>It&#8217;s easy! Just follow these quick tips.<\/p>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"435\" src=\"https:\/\/browsit.org\/blog\/wp-content\/uploads\/2023\/11\/coding-1024x435.jpg\" alt=\"Doing research on computer\" class=\"wp-image-253\" srcset=\"https:\/\/browsit.org\/blog\/wp-content\/uploads\/2023\/11\/coding-1024x435.jpg 1024w, https:\/\/browsit.org\/blog\/wp-content\/uploads\/2023\/11\/coding-300x127.jpg 300w, https:\/\/browsit.org\/blog\/wp-content\/uploads\/2023\/11\/coding-768x326.jpg 768w, https:\/\/browsit.org\/blog\/wp-content\/uploads\/2023\/11\/coding-1536x652.jpg 1536w, https:\/\/browsit.org\/blog\/wp-content\/uploads\/2023\/11\/coding.jpg 1560w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><figcaption class=\"wp-element-caption\">Image credit: chanwit yasamut<\/figcaption><\/figure>\n<\/div>\n\n\n<p>While proper documentation and an appealing download page are good indicators, there are a plenty of assessments that can help discern whether a plugin is well-made. Using free tools anyone can use, detecting most common red flags doesn\u2019t require any coding knowledge to comprehend. Here&#8217;s an easy-to-follow process for evaluating whether any given plugin has quality parts under the hood.<\/p>\n\n\n\n<p>It is expected that you are already familiar with how to install server plugins. If you need a refresher, please read our article on <a href=\"https:\/\/browsit.org\/blog\/uncategorized\/how-do-i-set-up-a-minecraft-server\/\">how to set up a Minecraft server<\/a>.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Seek the source code<\/h2>\n\n\n\n<p>If you&#8217;re fluent in Java, many plugins have their source\u2014the code which ultimately makes up the plugin\u2014available on repositories such as Github. A link to source code can often be found on the plugin\u2019s resource page. In most cases where the source code is not provided, the downloaded plugin can simply be inspected with software designed for this purpose. This is the easiest way to check out how the project is structured.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Find a file manager<\/h2>\n\n\n\n<p>All plugins for <em>Minecraft: Java Edition<\/em> are distributed in the form of JAR files. These are simply packages of many files (known as an \u201carchive\u201d) which can be opened as long as you have the proper utility. A file manager or browser allows you to view the overall structure and basic text files inside a plugin. The utility known as WinRAR is a popular choice, but we recommend the 7-Zip software due to its lack of legal ambiguity. It was also tested to be faster than most managers in a number of aspects (source: <a href=\"https:\/\/www.tomshardware.com\/reviews\/winrar-winzip-7-zip-magicrar,3436.html\" target=\"_blank\" rel=\"noreferrer noopener\">https:\/\/www.tomshardware.com\/reviews\/winrar-winzip-7-zip-magicrar,3436.html<\/a>).<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Download a decompiler<\/h2>\n\n\n\n<p>While a file manager will give you an overview of how a plugin is organized, its compiled code (in this case, the collection of files which do the actual legwork) is not human-readable. This means another utility is needed to attempt to \u201cdecompile\u201d the JAR contents into something anyone can understand, provided the author hasn\u2019t applied obfuscation (more on this later). For most projects, we recommend JD-GUI, which offers a nice middle-ground between accuracy and user-friendliness in a simplistic graphic interface. Note that while most decompilers will also give you a look at structure and basic files, a dedicated file manager will typically provide a better experience for such tasks.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Check file and package names<\/h2>\n\n\n\n<p>Once you have the necessary tools, there are a number of good practices to watch for in server plugins. First, the package name should be something that immediately identifies what the plugin does and who created it. In a file manager or repository, this is viewed as a file path. For example, &#8220;org\/browsit\/cavegen&#8221; is a good package name, whereas &#8220;myplugin\/mineCraft\/QuicKteSt\/abc&#8221; is a poor choice. Decompilers may use dots or dropdown menus instead of slashes. Besides being identifiable, the package name should be consistent in case (preferably all lowercase) and have an appropriate length, with three parts\/folders being ideal.<\/p>\n\n\n\n<p>Within the central package should be a number of files, most of which should be organized within folders. If one of those files starts with \u201cMain\u201d this is an indicator that the developer either followed a poorly-made YouTube tutorial or did not do sufficient research before jumping in, as this naming is readily frowned upon in the Minecraft plugin community. Look for file names to be descriptive and in Pascal case, such as \u201cBukkitMagicPlugin&#8221; and not \u201cmYbuKkitMagicpluGin\u201d. The folders containing these files may use any capitalization, so long as it is consistent throughout, but should still represent the types of files within (i.e. a \u201clisteners\u201d folder for an &#8220;EntityListener&#8221; file).<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Look for evidence of build tools<\/h2>\n\n\n\n<p>Although not mandatory, use of a build automation tool, like Maven or Gradle, is a good indication that this is not the plugin developer\u2019s first project. These tools simplify the development process and are a great way to encourage others to work on or with the project. If you see any files containing the words \u201cmaven\u201d or \u201cgradle\u201d within the JAR, there\u2019s a high chance that an automation tool was used to create the plugin. You can also check the project&#8217;s source code for &#8220;pom.xml&#8221; or &#8220;build.gradle&#8221; files, which are configurations for Maven and Gradle, respectively.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Glance at the license and README<\/h2>\n\n\n\n<p>The developer\u2019s choice of license (or lack thereof) is also an indicator of developer competency. Of the many options available, the MIT and GPL licenses are most desirable, allowing anyone to use and modify the plugin and code with the least restrictions. You can usually find this information in a LICENSE file within the JAR and\/or its Github page. In cases where no license has been assigned, the author assumes full copyright. Note that while some plugins include license headers\u2014a comment at the beginning of some or all included files\u2014this is rarely sufficient to satisfy terms of a chosen license.<\/p>\n\n\n\n<p>Another way to check if an experienced developer was involved is whether a well-written README file exists. This text file provides additional information such as why the plugin was made, where it\u2019s available for download, and which license it was released under (but typically not the license agreement itself).<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Use the Browsit search function<\/h2>\n\n\n\n<p>If you found these steps hard to follow or simply don&#8217;t have the time, try finding your plugin on <a href=\"https:\/\/browsit.org\/search.php\">our search page<\/a>. We follow this process and more when reviewing plugins, so if your search result appears green, a version of that resource has been tested and found to comply with most, if not all, of these guidelines.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>It&#8217;s easy! Just follow these quick tips. While proper documentation and an appealing download page are good indicators, there are a plenty of assessments that can help discern whether a plugin is well-made. Using free tools anyone can use, detecting most common red flags doesn\u2019t require any coding knowledge to comprehend. Here&#8217;s an easy-to-follow process &#8230; <a title=\"How to find quality Minecraft plugins?\" class=\"read-more\" href=\"https:\/\/browsit.org\/blog\/uncategorized\/how-to-find-quality-minecraft-plugins\/\" aria-label=\"Read more about How to find quality Minecraft plugins?\">Read more<\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_lmt_disableupdate":"","_lmt_disable":"","footnotes":""},"categories":[1],"tags":[],"class_list":["post-250","post","type-post","status-publish","format-standard","hentry","category-uncategorized"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to find quality Minecraft plugins? - Browsit<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/browsit.org\/blog\/uncategorized\/how-to-find-quality-minecraft-plugins\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to find quality Minecraft plugins? - Browsit\" \/>\n<meta property=\"og:description\" content=\"It&#8217;s easy! Just follow these quick tips. While proper documentation and an appealing download page are good indicators, there are a plenty of assessments that can help discern whether a plugin is well-made. Using free tools anyone can use, detecting most common red flags doesn\u2019t require any coding knowledge to comprehend. Here&#8217;s an easy-to-follow process ... Read more\" \/>\n<meta property=\"og:url\" content=\"https:\/\/browsit.org\/blog\/uncategorized\/how-to-find-quality-minecraft-plugins\/\" \/>\n<meta property=\"og:site_name\" content=\"Browsit\" \/>\n<meta property=\"article:published_time\" content=\"2023-11-02T22:44:31+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-04-15T20:11:00+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/browsit.org\/blog\/wp-content\/uploads\/2023\/11\/coding.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1560\" \/>\n\t<meta property=\"og:image:height\" content=\"662\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Browsit\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Browsit\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/browsit.org\\\/blog\\\/uncategorized\\\/how-to-find-quality-minecraft-plugins\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/browsit.org\\\/blog\\\/uncategorized\\\/how-to-find-quality-minecraft-plugins\\\/\"},\"author\":{\"name\":\"Browsit\",\"@id\":\"https:\\\/\\\/browsit.org\\\/blog\\\/#\\\/schema\\\/person\\\/b19024511d0491109d2fab945293b1a3\"},\"headline\":\"How to find quality Minecraft plugins?\",\"datePublished\":\"2023-11-02T22:44:31+00:00\",\"dateModified\":\"2026-04-15T20:11:00+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/browsit.org\\\/blog\\\/uncategorized\\\/how-to-find-quality-minecraft-plugins\\\/\"},\"wordCount\":962,\"commentCount\":1,\"publisher\":{\"@id\":\"https:\\\/\\\/browsit.org\\\/blog\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/browsit.org\\\/blog\\\/uncategorized\\\/how-to-find-quality-minecraft-plugins\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/browsit.org\\\/blog\\\/wp-content\\\/uploads\\\/2023\\\/11\\\/coding-1024x435.jpg\",\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/browsit.org\\\/blog\\\/uncategorized\\\/how-to-find-quality-minecraft-plugins\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/browsit.org\\\/blog\\\/uncategorized\\\/how-to-find-quality-minecraft-plugins\\\/\",\"url\":\"https:\\\/\\\/browsit.org\\\/blog\\\/uncategorized\\\/how-to-find-quality-minecraft-plugins\\\/\",\"name\":\"How to find quality Minecraft plugins? - Browsit\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/browsit.org\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/browsit.org\\\/blog\\\/uncategorized\\\/how-to-find-quality-minecraft-plugins\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/browsit.org\\\/blog\\\/uncategorized\\\/how-to-find-quality-minecraft-plugins\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/browsit.org\\\/blog\\\/wp-content\\\/uploads\\\/2023\\\/11\\\/coding-1024x435.jpg\",\"datePublished\":\"2023-11-02T22:44:31+00:00\",\"dateModified\":\"2026-04-15T20:11:00+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/browsit.org\\\/blog\\\/uncategorized\\\/how-to-find-quality-minecraft-plugins\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/browsit.org\\\/blog\\\/uncategorized\\\/how-to-find-quality-minecraft-plugins\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/browsit.org\\\/blog\\\/uncategorized\\\/how-to-find-quality-minecraft-plugins\\\/#primaryimage\",\"url\":\"https:\\\/\\\/browsit.org\\\/blog\\\/wp-content\\\/uploads\\\/2023\\\/11\\\/coding.jpg\",\"contentUrl\":\"https:\\\/\\\/browsit.org\\\/blog\\\/wp-content\\\/uploads\\\/2023\\\/11\\\/coding.jpg\",\"width\":1560,\"height\":662},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/browsit.org\\\/blog\\\/uncategorized\\\/how-to-find-quality-minecraft-plugins\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/browsit.org\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to find quality Minecraft plugins?\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/browsit.org\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/browsit.org\\\/blog\\\/\",\"name\":\"Browsit\",\"description\":\"Blog\",\"publisher\":{\"@id\":\"https:\\\/\\\/browsit.org\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/browsit.org\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/browsit.org\\\/blog\\\/#organization\",\"name\":\"Browsit\",\"url\":\"https:\\\/\\\/browsit.org\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/browsit.org\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/browsit.org\\\/blog\\\/wp-content\\\/uploads\\\/2022\\\/01\\\/browsit_logo.png\",\"contentUrl\":\"https:\\\/\\\/browsit.org\\\/blog\\\/wp-content\\\/uploads\\\/2022\\\/01\\\/browsit_logo.png\",\"width\":372,\"height\":92,\"caption\":\"Browsit\"},\"image\":{\"@id\":\"https:\\\/\\\/browsit.org\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/browsit.org\\\/blog\\\/#\\\/schema\\\/person\\\/b19024511d0491109d2fab945293b1a3\",\"name\":\"Browsit\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/30cea2b93e2958ace05acaa3f5f90828e38d3438c7ce06dc0f45f3d9d459dbfd?s=96&d=identicon&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/30cea2b93e2958ace05acaa3f5f90828e38d3438c7ce06dc0f45f3d9d459dbfd?s=96&d=identicon&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/30cea2b93e2958ace05acaa3f5f90828e38d3438c7ce06dc0f45f3d9d459dbfd?s=96&d=identicon&r=g\",\"caption\":\"Browsit\"},\"sameAs\":[\"https:\\\/\\\/browsit.org\\\/blog\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to find quality Minecraft plugins? - Browsit","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/browsit.org\/blog\/uncategorized\/how-to-find-quality-minecraft-plugins\/","og_locale":"en_US","og_type":"article","og_title":"How to find quality Minecraft plugins? - Browsit","og_description":"It&#8217;s easy! Just follow these quick tips. While proper documentation and an appealing download page are good indicators, there are a plenty of assessments that can help discern whether a plugin is well-made. Using free tools anyone can use, detecting most common red flags doesn\u2019t require any coding knowledge to comprehend. Here&#8217;s an easy-to-follow process ... Read more","og_url":"https:\/\/browsit.org\/blog\/uncategorized\/how-to-find-quality-minecraft-plugins\/","og_site_name":"Browsit","article_published_time":"2023-11-02T22:44:31+00:00","article_modified_time":"2026-04-15T20:11:00+00:00","og_image":[{"width":1560,"height":662,"url":"https:\/\/browsit.org\/blog\/wp-content\/uploads\/2023\/11\/coding.jpg","type":"image\/jpeg"}],"author":"Browsit","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Browsit","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/browsit.org\/blog\/uncategorized\/how-to-find-quality-minecraft-plugins\/#article","isPartOf":{"@id":"https:\/\/browsit.org\/blog\/uncategorized\/how-to-find-quality-minecraft-plugins\/"},"author":{"name":"Browsit","@id":"https:\/\/browsit.org\/blog\/#\/schema\/person\/b19024511d0491109d2fab945293b1a3"},"headline":"How to find quality Minecraft plugins?","datePublished":"2023-11-02T22:44:31+00:00","dateModified":"2026-04-15T20:11:00+00:00","mainEntityOfPage":{"@id":"https:\/\/browsit.org\/blog\/uncategorized\/how-to-find-quality-minecraft-plugins\/"},"wordCount":962,"commentCount":1,"publisher":{"@id":"https:\/\/browsit.org\/blog\/#organization"},"image":{"@id":"https:\/\/browsit.org\/blog\/uncategorized\/how-to-find-quality-minecraft-plugins\/#primaryimage"},"thumbnailUrl":"https:\/\/browsit.org\/blog\/wp-content\/uploads\/2023\/11\/coding-1024x435.jpg","inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/browsit.org\/blog\/uncategorized\/how-to-find-quality-minecraft-plugins\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/browsit.org\/blog\/uncategorized\/how-to-find-quality-minecraft-plugins\/","url":"https:\/\/browsit.org\/blog\/uncategorized\/how-to-find-quality-minecraft-plugins\/","name":"How to find quality Minecraft plugins? - Browsit","isPartOf":{"@id":"https:\/\/browsit.org\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/browsit.org\/blog\/uncategorized\/how-to-find-quality-minecraft-plugins\/#primaryimage"},"image":{"@id":"https:\/\/browsit.org\/blog\/uncategorized\/how-to-find-quality-minecraft-plugins\/#primaryimage"},"thumbnailUrl":"https:\/\/browsit.org\/blog\/wp-content\/uploads\/2023\/11\/coding-1024x435.jpg","datePublished":"2023-11-02T22:44:31+00:00","dateModified":"2026-04-15T20:11:00+00:00","breadcrumb":{"@id":"https:\/\/browsit.org\/blog\/uncategorized\/how-to-find-quality-minecraft-plugins\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/browsit.org\/blog\/uncategorized\/how-to-find-quality-minecraft-plugins\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/browsit.org\/blog\/uncategorized\/how-to-find-quality-minecraft-plugins\/#primaryimage","url":"https:\/\/browsit.org\/blog\/wp-content\/uploads\/2023\/11\/coding.jpg","contentUrl":"https:\/\/browsit.org\/blog\/wp-content\/uploads\/2023\/11\/coding.jpg","width":1560,"height":662},{"@type":"BreadcrumbList","@id":"https:\/\/browsit.org\/blog\/uncategorized\/how-to-find-quality-minecraft-plugins\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/browsit.org\/blog\/"},{"@type":"ListItem","position":2,"name":"How to find quality Minecraft plugins?"}]},{"@type":"WebSite","@id":"https:\/\/browsit.org\/blog\/#website","url":"https:\/\/browsit.org\/blog\/","name":"Browsit","description":"Blog","publisher":{"@id":"https:\/\/browsit.org\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/browsit.org\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/browsit.org\/blog\/#organization","name":"Browsit","url":"https:\/\/browsit.org\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/browsit.org\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/browsit.org\/blog\/wp-content\/uploads\/2022\/01\/browsit_logo.png","contentUrl":"https:\/\/browsit.org\/blog\/wp-content\/uploads\/2022\/01\/browsit_logo.png","width":372,"height":92,"caption":"Browsit"},"image":{"@id":"https:\/\/browsit.org\/blog\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/browsit.org\/blog\/#\/schema\/person\/b19024511d0491109d2fab945293b1a3","name":"Browsit","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/30cea2b93e2958ace05acaa3f5f90828e38d3438c7ce06dc0f45f3d9d459dbfd?s=96&d=identicon&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/30cea2b93e2958ace05acaa3f5f90828e38d3438c7ce06dc0f45f3d9d459dbfd?s=96&d=identicon&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/30cea2b93e2958ace05acaa3f5f90828e38d3438c7ce06dc0f45f3d9d459dbfd?s=96&d=identicon&r=g","caption":"Browsit"},"sameAs":["https:\/\/browsit.org\/blog"]}]}},"modified_by":"Browsit","_links":{"self":[{"href":"https:\/\/browsit.org\/blog\/wp-json\/wp\/v2\/posts\/250","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/browsit.org\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/browsit.org\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/browsit.org\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/browsit.org\/blog\/wp-json\/wp\/v2\/comments?post=250"}],"version-history":[{"count":3,"href":"https:\/\/browsit.org\/blog\/wp-json\/wp\/v2\/posts\/250\/revisions"}],"predecessor-version":[{"id":311,"href":"https:\/\/browsit.org\/blog\/wp-json\/wp\/v2\/posts\/250\/revisions\/311"}],"wp:attachment":[{"href":"https:\/\/browsit.org\/blog\/wp-json\/wp\/v2\/media?parent=250"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/browsit.org\/blog\/wp-json\/wp\/v2\/categories?post=250"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/browsit.org\/blog\/wp-json\/wp\/v2\/tags?post=250"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}