Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
Building a workable Chrome Extension in React+R...
Search
Sponsored
·
Your Podcast. Everywhere. Effortlessly.
Share. Educate. Inspire. Entertain. You do you. We'll handle the rest.
→
Nikos Kostoulas
May 20, 2016
130
0
Share
Building a workable Chrome Extension in React+Redux
Devit workshop 2016
Nikos Kostoulas
May 20, 2016
Featured
See All Featured
Building Experiences: Design Systems, User Experience, and Full Site Editing
marktimemedia
0
460
Why Our Code Smells
bkeepers
PRO
340
58k
Design of three-dimensional binary manipulators for pick-and-place task avoiding obstacles (IECON2024)
konakalab
0
390
Done Done
chrislema
186
16k
Unsuck your backbone
ammeep
672
58k
Ecommerce SEO: The Keys for Success Now & Beyond - #SERPConf2024
aleyda
1
1.9k
Sharpening the Axe: The Primacy of Toolmaking
bcantrill
46
2.7k
世界の人気アプリ100個を分析して見えたペイウォール設計の心得
akihiro_kokubo
PRO
68
38k
Highjacked: Video Game Concept Design
rkendrick25
PRO
1
330
The innovator’s Mindset - Leading Through an Era of Exponential Change - McGill University 2025
jdejongh
PRO
1
140
How STYLIGHT went responsive
nonsquared
100
6k
Navigating Team Friction
lara
192
16k
Transcript
Building a Workable Chrome Extension in React & Redux Devit
Conference • May 2016
We are... Sokratis Vidros Senior Software Engineer @ Workable sokratisvidros
Nikos Kostoulas Senior Software Engineer @ Workable nkostoulas
Chrome Extensions
Chrome Extensions
Chrome Extensions Building blocks
Background page
Content script
Popup
Options
Background and content script are separate JS runtimes
• Simple one-time requests • Long-lived connections Message passing Background
script Content script
Spoiled™ Chrome Extension https://github.com/Workable/devit2016
1. Select a GoT character name in narratives 2. View
their spoiler on the side Scenario
Demo
Let’s Dev it!
Background page • Fetch spoiler from server • Memoize last
spoiler Responsibilities Content script • Interact with page DOM • Display the spoiler on the side
Background page Flow Content script 1. Select name in text
2. Send it to the background 6.Render the spoiler 5. Pass it to the content script 3. Receive the selected name 4. Fetch spoiler from server
We would also like to... • Render data efficiently •
Achieve content script isolation • Facilitate message passing • Add memory
Can we use React/Redux?
React/Redux View Action Middleware Reducers Store
{ tab, foreground: true, type: ... } Content script Background
script Architecture View Action Middleware Reducers Store Action Middleware Reducers Store { payload: … } { background: true, type: ... }
Toolbelt + Redux Redux notify React Redux thunk Redux Chrome
Gofer
Show us the code!
Step 1: Scaffolding • Add manifest.json • Add the background
Redux Stack • Add the content script React/Redux Stack • Set-up reduxChromeGofer middleware > git checkout step1
Step 2: Content script encapsulation • Leverage React componentization ◦
Root container component ◦ Spoiler presentational component • Enclose root component in a shadow root ◦ Style encapsulation and isolation > git checkout step2
Step 3: Request spoiler Background Script Content Script { background:
true, type: “REQUEST_SPOILER”, name: ... } • Transfer action from content to background • Execute ajax request from the background ◦ No same-origin policy limitations > git checkout step3 GET /spoilers.json?c=eddard Select name
Content Script Background Script Step 4: Receive spoiler dispatch(receiveSpoiler()) {
foreground: true, tab, type: “RECEIVE_SPOILER”, spoiler: ... } • Dispatch receive action upon retrieval • Pass the spoiler to content script > git checkout step4
• Listen to background script state changes • Push background
state to every content script Step 5: Sync state Background Script Content Script Content Script Content Script > git checkout step5
None
✓ Back end engineers ✓ Front end engineers ✓ Machine
learning engineers ✓ Data scientists ✓ DevOps ✓ UI / UX designers We’re constantly looking for: Apply at careers.workable.com