SlideShare a Scribd company logo
Boris Mossounov
facebook.com/mossounov
linkedin.com/in/borismossounov
anotherguru.me
How to build augmented reality
for Single Page Application
using browser extension?
Boris Mossounov
facebook.com/mossounov
linkedin.com/in/borismossounov
anotherguru.me
How to build augmented reality
for Single Page Application
using browser extension?
orsetInterval MutationObserver
Pain:
Content Script & Styles are embedded and augment
webpage only once when page is loaded.
In Single Page Applications webpage changes without
reload.
You gotta pick optimal mechanism for page augmentation
timing.
Option 1. window.setInterval()
t
Meanwhile in inactive tabs…
Option 1. window.setInterval()
The more tabs the more overhead.
You’ve got overhead regardless whether the user is busy
or idle.
The lesser timeout the more overhead.
The longer timeout the more noticeable is the
augmentation lag.
Option 2. MutationObserver
t
in theory:
in reality:
meanwhile in other tabs:
but in some tabs:
DOM tree modifications happen in bulk usually.
Sometimes in cycle.
The overhead does not depend on the number of open
tabs.
Somewhere in Single Page Application interval triggered
DOM tree modifications can occur.
DOM tree modification callback can produce another
DOM tree modification. You can end up in endless loop.
Option 2. MutationObserver
setInterval MutationObserver
setTimeout &
MutationObserver
Option 3. MutationObserver + setTimeout
t
meanwhile in other tabs:
but somewhere:
200 ms 200 ms 200 ms 200 ms 200 ms
200 ms 200 ms 200 ms 200 ms 200 ms 200 ms 200 ms 200 ms
DOM tree modification callback is fired after a bunch of
modifications.
Inactive tabs do not produce overhead.
It takes some effort and smarts to implement this
mechanism carefully without endless loops.
Option 3. MutationObserver + setTimeout
Questions?

More Related Content

DOC
How to add local user through batch file with time restriction in windows
PDF
Project Report FN-11
PDF
Resume-Nov2016
PDF
Reclutamiento 2.0
PPTX
2016recruitmentinsights
PDF
Usda update Nov2016
PDF
Jeera turmeric update_Nov2016
PDF
How to add local user through batch file with time restriction in windows
Project Report FN-11
Resume-Nov2016
Reclutamiento 2.0
2016recruitmentinsights
Usda update Nov2016
Jeera turmeric update_Nov2016

More from chaykaborya (6)

PPTX
AngularJS2 vs VueJS2 (ru)
PPTX
Оранжевый - новый синий: Как портировать Chrome Extension в Firefox Extension
PPTX
Orange is the new blue: How to port Chrome Extension to Firefox Extension
PPTX
Особенности разработки браузерных расширений для Single Page Application
PPTX
Yeoman generator своими руками
PPT
Wordpress promo
AngularJS2 vs VueJS2 (ru)
Оранжевый - новый синий: Как портировать Chrome Extension в Firefox Extension
Orange is the new blue: How to port Chrome Extension to Firefox Extension
Особенности разработки браузерных расширений для Single Page Application
Yeoman generator своими руками
Wordpress promo
Ad

Recently uploaded (20)

PPTX
Oracle E-Business Suite: A Comprehensive Guide for Modern Enterprises
PDF
wealthsignaloriginal-com-DS-text-... (1).pdf
PDF
Wondershare Filmora 15 Crack With Activation Key [2025
PDF
Adobe Premiere Pro 2025 (v24.5.0.057) Crack free
PDF
top salesforce developer skills in 2025.pdf
PDF
Digital Systems & Binary Numbers (comprehensive )
PPTX
VVF-Customer-Presentation2025-Ver1.9.pptx
PDF
Digital Strategies for Manufacturing Companies
PPTX
Introduction to Artificial Intelligence
PDF
PTS Company Brochure 2025 (1).pdf.......
PDF
System and Network Administraation Chapter 3
PPTX
Computer Software and OS of computer science of grade 11.pptx
PDF
Internet Downloader Manager (IDM) Crack 6.42 Build 41
PPTX
L1 - Introduction to python Backend.pptx
PPT
Introduction Database Management System for Course Database
PPTX
Reimagine Home Health with the Power of Agentic AI​
PPTX
Transform Your Business with a Software ERP System
PDF
Odoo Companies in India – Driving Business Transformation.pdf
PPTX
Agentic AI : A Practical Guide. Undersating, Implementing and Scaling Autono...
PPTX
history of c programming in notes for students .pptx
Oracle E-Business Suite: A Comprehensive Guide for Modern Enterprises
wealthsignaloriginal-com-DS-text-... (1).pdf
Wondershare Filmora 15 Crack With Activation Key [2025
Adobe Premiere Pro 2025 (v24.5.0.057) Crack free
top salesforce developer skills in 2025.pdf
Digital Systems & Binary Numbers (comprehensive )
VVF-Customer-Presentation2025-Ver1.9.pptx
Digital Strategies for Manufacturing Companies
Introduction to Artificial Intelligence
PTS Company Brochure 2025 (1).pdf.......
System and Network Administraation Chapter 3
Computer Software and OS of computer science of grade 11.pptx
Internet Downloader Manager (IDM) Crack 6.42 Build 41
L1 - Introduction to python Backend.pptx
Introduction Database Management System for Course Database
Reimagine Home Health with the Power of Agentic AI​
Transform Your Business with a Software ERP System
Odoo Companies in India – Driving Business Transformation.pdf
Agentic AI : A Practical Guide. Undersating, Implementing and Scaling Autono...
history of c programming in notes for students .pptx
Ad

How to build augmented reality for Single Page Application using browser extension?