Ask Across Sites: Forking a Tampermonkey Script That Actually Sends
I have wanted a way to ask the same question on several AI sites at once for a long time. Copy-pasting across tabs is fine once. It is not fine when you are comparing answers for real work.
This week I finally shipped something I can use myself: a Tampermonkey userscript called Ask Across Sites (「多站同问」).
It is not a from-scratch invention. The core idea — simultaneous ask plus directory navigation — comes from interest2’s script Multi-model simultaneous answering & directory navigation (GF 537302, baseline 5.2.6). I forked it, fixed what broke for me, and published a maintained listing.
- Install: Greasy Fork 595104
- Source: github.com/yicone/tampermonkey-scripts
- Announcement threads: Chinese · English
How I picked a starting point
I asked Grok for options and tried to choose the one that already matched the problem. interest2’s script was the best fit among the ones I looked at: local userscript, multi-site send, TOC for long answers.
Then reality showed up quickly:
- Adapters for current site DOMs were broken or flaky
- No Google AI Mode support (I use it a lot)
- Missing or inconsistent brand icons in the picker
So the work was less “invent multi-ask” and more “make this usable on the sites I open every day.”
What I changed
On top of the upstream baseline I focused on:
- Doubao / 千问 (Qianwen) sync so a submitted question actually sends (not just a draft that sits in the composer)
- Grok input injection for its ProseMirror / Tiptap editor
- Google AI Mode support
- A small test + Ego adapter probe path so DOM drift is easier to catch without randomly clicking Send
- Rename + credit upstream in the listing copy
- LobeHub icons so the panel marks look consistent
- A local-first Tampermonkey workflow: edit on disk, load in Ego Lite, publish the full script to Greasy Fork via the repo
The public name is 多站同问 with English @name:en Ask Across Sites. Current version lives in script.user.js on GitHub (v1.0.2 when I wrote this).
What I have actually tested
Honest boundary: I have personally tested simultaneous ask on:
- Google AI Mode
- Grok
- Doubao
- Qianwen (Chinese UI)
- DeepSeek (Chinese UI)
I have not personally verified TOC navigation or the hide-input reading mode yet. Those features still come from upstream; treat them as untested by me until I say otherwise.
Please open an issue if a site you care about fails to inject or send.
What’s next
The next feature I want is search across these sites’ chat history in one place. I need that for myself. If you do too, reply on the X threads or open an issue.
Credits
Huge thanks to interest2 for the original script. If you only need the classic behavior and my fork is wrong for you, start from GF 537302.
Yes, I coded one — mostly by maintaining someone else’s good idea until it worked on my daily stack.