User:JBMagination/common.js

Source: Wikipedia, the free encyclopedia.
Note: After saving, you have to bypass your browser's cache to see the changes. Google Chrome, Firefox, Microsoft Edge and Safari: Hold down the ⇧ Shift key and click the Reload toolbar button. For details and instructions about other browsers, see Wikipedia:Bypass your cache.
importScript('User:BrandonXLF/CollapseSections.js'); // [[User:BrandonXLF/CollapseSections.js]]

document.addEventListener("DOMContentLoaded", function() {
	Array.from(document.getElementsByTagName('a')).forEach(function(a){
		/** Gold Special Links **/
		if (a.href.includes('/wiki/Special:')) { a.setAttribute('style', 'color: #BC9312 !important;'); }
		if (a.href.includes('/w/index.php')) { 
			alert(new URLSearchParams(new URL(a.href).search).get('title'));
			a.setAttribute('style', 'color: #BC9312 !important;');
		}
		
		/** Pink Off-Site Links **/
		if (!(a.href.includes('.wikipedia.org'))) { a.setAttribute('style', 'color: #FF00FF !important;'); }
	});
});
// [[User:JBMagination|JBMagination]] ([[User talk:JBMagination|talk]]) 17:23, 25 May 2022 (UTC)