_ _    _ _____  ___   __                       
 __      _(_) | _(_)___ / ( _ ) / /_   ___ ___  _ __ ___  
 \ \ /\ / / | |/ / | |_ \ / _ \| '_ \ / __/ _ \| '_ ` _ \ 
  \ V  V /| |   <| |___) | (_) | (_) | (_| (_) | | | | | |
   \_/\_/ |_|_|\_\_|____/ \___/ \___(_)___\___/|_| |_| |_|

User:Slaporte/FeedbackTab.js

In today's article, we are going to explore User:Slaporte/FeedbackTab.js and its relevance in modern society. From its impact on people's daily lives to its influence in the professional field, User:Slaporte/FeedbackTab.js has become a topic of great interest in recent years. As we progress through this article, we are going to take a closer look at how User:Slaporte/FeedbackTab.js has evolved over time and the implications it has on different aspects of our lives. Additionally, we will also discuss the future prospects of User:Slaporte/FeedbackTab.js and how it can continue to shape our world in the years to come. Get ready to immerse yourself in the fascinating world of User:Slaporte/FeedbackTab.js!
/**
 * Add Feedback v5 Tab
 * @source: http://en.wikipedia.orghttps://wiki386.com/en/User:Slaporte/FeedbackTab.js
 * @author: Stephen LaPorte
 */

$.getJSON(
	mw.util.wikiScript( 'api' ), {
		'format': 'json',
		'action': 'query',
		'list': 'articlefeedbackv5-view-ratings',
		'afpageid': mw.config.get('wgArticleId')
	}, function ( data ) {
		if(data > 0) {
			function createTab() {
				mw.util.addPortletLink( 'p-views', 'http://en.wikipedia.orghttps://wiki386.com/en/Special:ArticleFeedbackv5/' + mw.config.get('wgTitle'), 'Feedback');
		}
		addOnloadHook( createTab );
	}
});