Widget:DataExporter
From LINKS Community Center
<!DOCTYPE html> <html>
<head> <script> 'use strict';
const base = 'https://links.communitycenter.eu'; const url = '/index.php?title=Category:Disaster_Community_Technology&action=raw';
const usr = '/api.php?action=query&meta=userinfo&format=json';
async function exportData() { const res = await fetch(base + usr); document.getElementById('output').innerText = JSON.stringify(res); } </script> </head> <body> <button type="button" onclick="exportData()">Export Data</button>
</body>
</html>