iframe.ts 226 B

12345678910
  1. const iframe = new iFrame();
  2. iframe.on("UpdateData", () => {
  3. if (document.querySelector(".se-documentTitle span")) {
  4. iframe.send({
  5. blog: document.querySelector(".se-documentTitle span").textContent.trim(),
  6. });
  7. }
  8. });