WordPress Plugin Detector

How to Find Out What Plugins a Site Is Using Manually 🔌

If you’ve used all of the tools listed above and still can’t find the WordPress plugin you’re looking for, you might want to try identifying it manually. This process is definitely more difficult and time-consuming, but since plugin detectors can’t identify every product that’s out there, it may be necessary.

First, navigate to the site with a plugin(s) you want to detect. Right-click anywhere on the page and select Inspect:

In the window that appears, click on Sources. Look for the wp-content/plugins directory:

You’ll see the active plugins on the site listed here. Note that this method only shows plugins that load custom resources (JavaScript and CSS) on the client side. If you don’t see a plugin directory in the Sources list, it’s because none of the products on the site meet these requirements.

Check HTML code

Some webmasters can easily be confused about what WordPress version their websites have or simply is it WordPress site. All sites use HTML code to display content. The browser sees this code and displays it so that we can recognize it. Seeing and understanding the code is not so difficult. Let’s look at three ways to look for clues in the code that some plugins leave. We will use the Chrome browser (the same principles will work in other browsers):

  • View page source and do a quick search in the resulting code on the line “wp-content / plugins /”. After this text, the code may contain the name of the plugin (note: there may be several such occurrences in the code if there are many plugins on the site). Also, you can try searching the style sheets or JS files (search by “.css” or “.js” in the code), since they may contain the name of the plugin in their names.
  • Looking for HTML comments. Some plugins leave their own code on the page wrapped in HTML comments – Yoast’s SEO is a great example. View page source to scroll through the code and examine the lines with green text – these green lines are HTML comments.
  • Explore specific web elements. Inspect the element of a certain web element (widget, table, etc.). Examine the code and try to find the names ID or Class. Class or identifier names may include the name of the plugin that is responsible for this feature.