Biotoxsin,
<!DOCTYPE html>
<html>
<head>
<title>Untitled</title>
<meta charset="utf-8">
<style type="text/css">
</style>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script>
$(function() {
$.fn.plugin = function() {
console.log(this[0])
}
$('.test').plugin()
});
</script>
</head>
<body class="test">
</body>
</html>