Keys are stored in this browser's localStorage only — they won't appear in other browsers. Use Export/Import to move keys between browsers or devices.
Google News Proxy
Paste your Cloudflare Worker URL to get real Google News results on any device. Free, 5-min setup — see instructions below.
Setup: workers.cloudflare.com → Free account → Create Worker → paste this code → Deploy:
export default {
async fetch(req) {
const url = new URL(req.url).searchParams.get('url');
if (!url) return new Response('missing url', {status:400});
const r = await fetch(url, {headers:{'User-Agent':'Mozilla/5.0'}});
const body = await r.text();
return new Response(body, {headers:{'Content-Type':'application/xml','Access-Control-Allow-Origin':'*'}});
}
};
Cloud Sync
Not configured
Paste your Firebase Realtime Database config to sync data in real-time across every browser and device — no server needed.
Setup: console.firebase.google.com → New project → Realtime Database → Start in test mode → Project Settings → Your apps → Config.