Aller au contenu

Utilisateur:Csisc/StructuredCategories.js

Une page de Wikipédia, l'encyclopédie libre.
Note : après avoir enregistré la page, vous devrez forcer le rechargement complet du cache de votre navigateur pour voir les changements.

Mozilla / Firefox / Konqueror / Safari : maintenez la touche Majuscule (Shift) en cliquant sur le bouton Actualiser (Reload) ou pressez Maj-Ctrl-R (Cmd-R sur Apple Mac) ;

Firefox (sur GNU/Linux) / Chrome / Internet Explorer / Opera : maintenez la touche Ctrl en cliquant sur le bouton Actualiser ou pressez Ctrl-F5.
item = document.querySelector("#firstHeading")
title = item.innerText
if (title.indexOf("Catégorie:")==0) {
	body = document.querySelector("#contentSub")
	link = body.appendChild(document.createElement("a")) 
	link.href = "https://query.wikidata.org/embed.html#SELECT%20%3Fproperty%20%3FpropertyLabel%20%3Fitem%20%3FitemLabel%20%0AWITH%20%7B%0A%20SELECT%20%3Fitem1%20WHERE%20%7B%0A%20SERVICE%20wikibase%3Amwapi%20%7B%0A%20%20%20%20%20bd%3AserviceParam%20wikibase%3Aendpoint%20%22fr.wikipedia.org%22%3B%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20wikibase%3Aapi%20%22Generator%22%3B%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20mwapi%3Agenerator%20%22categorymembers%22%3B%20%20%20%20%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20mwapi%3Agcmtitle%20%22" + title + "%22%3B.%0A%20%20%20%20%20%3Fitem1%20wikibase%3AapiOutputItem%20mwapi%3Aitem.%0A%20%20%7D%20%0A%20%20FILTER%20BOUND%20%28%3Fitem1%29%0A%20%7D%0A%20%20LIMIT%20500%0A%20%7D%0A%20AS%20%25list1%0AWITH%20%7B%0ASELECT%20%3Fproperty%20%3FpropertyLabel%20%3Fitem%20%3FitemLabel%20%28COUNT%28%2a%29%20AS%20%3Fcount%29%0AWHERE%20%7B%0A%20%20INCLUDE%20%25list1.%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%0A%20%20%3Fitem1%20%3Fprop%20%3Fitem.%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%0A%20%20%3Fitem%20rdfs%3Alabel%20%3FitemLabel.%0A%20%20FILTER%28LANG%28%3FitemLabel%29%3D%22fr%22%29%0A%20%20%3Fproperty%20wikibase%3AdirectClaim%20%3Fprop.%0A%20%20%3Fproperty%20rdfs%3Alabel%20%3FpropertyLabel.%0A%20%20FILTER%28LANG%28%3FpropertyLabel%29%3D%22fr%22%29%0A%7D%0AGROUP%20BY%20%3Fproperty%20%3FpropertyLabel%20%3Fitem%20%3FitemLabel%0AORDER%20BY%20DESC%28%3Fcount%29%0ALIMIT%206%0A%7D%20AS%20%25list%0AWHERE%20%7B%0A%20%20INCLUDE%20%25list.%0A%20%20FILTER%28%3Fcount%20%3E%203%29%0A%20%20%7D%0AORDER%20BY%20DESC%28%3Fcount%29"
	link.innerText = "Données structurées"
}