SlideShare a Scribd company logo
1 of 48
Download to read offline
For Christmas, build your own chrome
extension!
Nicolas Despres
Program Architect
13 Décembre 2023
@
Isdi France
Program Architect
Salesforce
Extension Publisher
SF Explorer
Nicolas Despres
#BroForce
How I Met
Web
Extensions
Understand the
architecture and
offered
possibilities
Understand the
ecosystem and
most popular apps
Deep dive and
manual to go
further
Yes you can!
Session objectives
November
2022
Second
assignment, LWC
+ D3 dataviz to
understand
omnistudio…
Insurance Product
visualisation managed
package developed
for AG2R
Release 1.0
Release 0.1
Compare Flexipage
for AG2R with Santos!
February
2023
June
2023
October
2023
My Journey @Salesforce
today
Release 2.0 and a
new package
Learning about
Web Extensions
march
2023
Unified Design for
Salesforce Setup
Goal!
May
2022
Joined SF, 3
months on
trailhead
About 250 users
Agenda
I. What are chrome extensions?
II. Some example
III. Reasons to build your extension
IV. Reasons behind SF Explorer
V. Enough! Show me some code!
VI. Q&A
I. What are chrome
extensions?
“Web Extensions are software programs
built on web technologies that enable users to
customize the browsing experience.”
It provide things like:
1. Productivity tools.
2. Web page content enrichment.
3. Information aggregation.
ChatGPT
“Productivity is a measure of how efficient you are at
what you do. Productivity tools are software designed to
simplify tasks and streamline your work. “
● Easy to develop, only js & html
○ a user experience can be base on the Salesforce
Design System
● Access to OSS ecosystem
● Cors ready
● Multiorg support
● Native UX (shortcuts, storage, panel...)
● Automatic updates
● No need to be admin of your org to
install/use it
● A single installation is enough for all your
orgs
● A fast security review
● Free (5$ to be publisher)
● At your Organization level:
○ required
○ forbidden
○ restricted
Why develop extensions?
Capabilities Deployment
Top reasons
How awesome
is that?!
Shortcuts
II. Example of some ‘cool’
extensions
180,000 extensions!
Chrome webstore
Legendary
Insanulous
Sample ‘cool’ extensions
Salesforce user extensions
Lightly Intrusive
Very Intrusive Intrusive Intrusive
Non Intrusive
Non Intrusive
Salesforce Admin extensions
Inject code into all your page ! Do not inject code or inject code only when you
decide
Admin Extension Categories
Intrusive Non-Intrusive
III. Reasons to make your own
extensions
● Doing it to help YOU
● Be more productive
● Learn something new
● Do something that does not exist or no
solution satisfies you
Why develop your own extension?
Good reasons Cautions
Top reasons
● Get ready to be criticized
● Get ready to work extra time
Quizz Time
IV. Reasons behind SF
Explorer
When I discovered salesforce 18 months ago…
How can I compare 2 flexipages?
Can I use a StoryBook to
document my LWC components?
Can I use a dark mode?
How I met your mother
S4EP14
Principle
Possible Impossible
Dark
Theme
Custom Object
Show API
Name
User
Permission
Dynamic Form
Principle
Possible Impossible
Dark
Theme
Custom Object Show API
Name
User
Permission
Dynamic Form
“possimpible”
Did you say impossible?
Possimpible in action
Show LWC Info
Modern Tech
Built on top of React, Typescript and
JSForce.
2
Strong Foundation
WebExtension with Native Multiorg
Support
1
Salesforce UX
Use Salesforce Lightning Design System
together with Browser Native capabilities
4
Advanced Capabilities
Excel like and advanced text edition
capabilities to ease your explorations
3
Non Intrusive
Salesforce Explorer
Tech stack
SF Explorer - Advanced Setup
The same setup UI, but better…
Today on pset and custom object but
tomorrow generalized in other entry
points
What about helping the admin with
contextualized info from our orgs?
Modern Tech
Built on top of Typescript and dom-chef.
2
Strong Foundation
WebExtension with storage permission
and lightweight footprint
1
Salesforce Embedded
Your setup, but enhanced!
4
Configurable
Select what message you want to add in
the setup screen
3
Intrusive
Salesforce Explorer - Advanced Setup
Tech stack (lighter)
Joined Salesforce
A lot to learn and catch up on…
05-2022
LWC Tool for omnistudio
Sent on a 2 weeks audit mission and need to understand
implemented omniscripts -> needed a tool for that…
11-2022
Product Visualisation / Managed Package
Published a managed package and started looking at the app
exchange to publish it
02-2023
Discovering chrome extension
Study Salesforce Inspector and other options. Start implementing
Flexipage Compare for AG2R
05-2023
Version 1.0
A lot of features and difficult for users to understand how to use
the tool without assistance
09-2023
Version 2.0
Improved UX (tab panel)
Full rewrite
11-2023
V. Show me some code!
Outside of Chrome
UI Background
Toolbar button
badge
Popup window
Option window
Notification
Menu / Option
data
Contents Script
Background Script
Context menu
Web page
JavaScript
HTML
CSS
JavaScript
HTML
CSS
JavaScript
CSS
Service_worker
(JavaScript)
External API
storage
bookmark
chrome.message
notification
runtime.message
runtime.message
Inside of Chrome
External API
alarm
action
browserAction
history
contextMenus
fileSystemProvider
pageCapture
printing
OS
cookie
Chrome Data
{
"name": "Salesforce Explorer - Enhanced Setup",
"version": "0.0.4",
"description": "Enhance your Salesforce setup",
"homepage_url": "https://sf-explorer.github.io/documentation/",
"manifest_version": 3,
"author": "Nicolas Despres",
"icons": {
"128": "logo128.png"
},
"permissions": ["storage", "cookies"],
"host_permissions": [
"https://*.salesforce.com/*"
],
"background": {
"service_worker": "background.js",
"type": "module"
},
"content_scripts": [
{
"matches": [
"https://*.salesforce.com/*newPermissionSet*"
],
"js": ["setup-enhance.js", "force.min.js"],
"all_frames": true
}
]
}
manifest.json
Background
data
Contents Script
Background Script
Salesforce page
JavaScript
CSS
Service_worker
(JavaScript)
storage
runtime.message
Inside of Chrome
cookie
Chrome Data
chrome.runtime.onMessage.addListener((request, sender,
sendResponse) => {
if (request.message == "getSession") {
chrome.cookies.get({
url: request.sfHost,
name: "sid",
}, sessionCookie => {
sendResponse(sessionCookie.value)
})
return true;
}
return false
})
Contents script
async function getSession(sfHost: string) {
return new Promise<any>(resolve =>
chrome.runtime.sendMessage(
{
message: "getSession",
sfHost
},
resolve)
)
}
export async function jsforce() {
return new (window as any).jsforce.Connection({
instanceUrl: window.location.origin,
accessToken: getSession(window.location.host),
version: '59.0',
})
}
background.js
The rest is DOM
manipulation
https://github.com/nicolas-despres/Awesome-Salesforce-WebExtensions/
API & Permissions
Hosts
Join the
#ExtensionForce!
Join the
#BroForce!
“A Bro is always entitled to do
something stupid, as long as the
rest of his Bros are all doing it.”
“You can ask the universe for signs all you
want, but ultimately we only see what we
want to see when we’re ready to see it.” — Ted
Mosby
“Sometimes we search for one
thing but discover another.” —
Lily Aldrin
Inspirational Quotes
“Nothing in this world that’s worth having comes easy.”
— Dr. John Beckwith
“Whatever you do in this life, it’s not legendary unless your
friends are there to see it.” — Ted Mosby
“A Bro is always entitled to do
something stupid, as long as the
rest of his Bros are all doing it.”
“Whenever I’m sad, I just stop being sad and
be legendary instead.”
“When life gets you down, just remember there’s a whole
world out there waiting for you.”
“When I’m feeling low, I just
remind myself that I’m too
awesome to be sad.”
● Eval is not allowed
● Monaco integration
● JSForce on the browser
Challenges faced
Technical User feedback
● Difficulty to understand how to use it
● To many features…
Q&A
Merci…

More Related Content

Similar to Pour Noël, devenez chrome extensioniste!

So, You Wanna Dev? Join the Team! - WordCamp Raleigh 2017
So, You Wanna Dev? Join the Team! - WordCamp Raleigh 2017 So, You Wanna Dev? Join the Team! - WordCamp Raleigh 2017
So, You Wanna Dev? Join the Team! - WordCamp Raleigh 2017 Evan Mullins
 
Resume latest Update
Resume latest UpdateResume latest Update
Resume latest UpdateVaibhav soni
 
Best of barcelona symposium experience
Best of barcelona symposium experienceBest of barcelona symposium experience
Best of barcelona symposium experienceThe Reference
 
Transform your Intranet with Drupal and Alfresco - by Optaros
Transform your Intranet with Drupal and Alfresco - by OptarosTransform your Intranet with Drupal and Alfresco - by Optaros
Transform your Intranet with Drupal and Alfresco - by OptarosAlfresco Software
 
JavaScript Presentation Frameworks and Libraries
JavaScript Presentation Frameworks and LibrariesJavaScript Presentation Frameworks and Libraries
JavaScript Presentation Frameworks and LibrariesOleksii Prohonnyi
 
Expanding XPages with Bootstrap Plugins for Ultimate Usability
Expanding XPages with Bootstrap Plugins for Ultimate UsabilityExpanding XPages with Bootstrap Plugins for Ultimate Usability
Expanding XPages with Bootstrap Plugins for Ultimate UsabilityTeamstudio
 
Plugin development demystified 2017
Plugin development demystified 2017Plugin development demystified 2017
Plugin development demystified 2017ylefebvre
 
The Superhero’s Method of Modern HTML5 Development by RapidValue Solutions
The Superhero’s Method of Modern HTML5 Development by RapidValue SolutionsThe Superhero’s Method of Modern HTML5 Development by RapidValue Solutions
The Superhero’s Method of Modern HTML5 Development by RapidValue SolutionsRapidValue
 
Microsoft Teams - A developers perspective
Microsoft Teams - A developers perspectiveMicrosoft Teams - A developers perspective
Microsoft Teams - A developers perspectiveThomas Gölles
 
Kiran-SF Developer
Kiran-SF DeveloperKiran-SF Developer
Kiran-SF DeveloperKiran Patil
 
MVC Frameworks for building PHP Web Applications
MVC Frameworks for building PHP Web ApplicationsMVC Frameworks for building PHP Web Applications
MVC Frameworks for building PHP Web ApplicationsVforce Infotech
 
Portable single page applications with AngularJS in SharePoint
Portable single page applications with AngularJS in SharePointPortable single page applications with AngularJS in SharePoint
Portable single page applications with AngularJS in SharePointRoger Noble
 
Rapidly prototyping web applications using BackPress
Rapidly prototyping web applications using BackPressRapidly prototyping web applications using BackPress
Rapidly prototyping web applications using BackPressNathaniel Taintor
 
#ESPC18 how to migrate to the #SharePoint Framework?
#ESPC18 how to migrate to the #SharePoint Framework?#ESPC18 how to migrate to the #SharePoint Framework?
#ESPC18 how to migrate to the #SharePoint Framework?Vincent Biret
 
M365 global developer bootcamp 2019 Intro to SPFx Version
M365 global developer bootcamp 2019 Intro to SPFx VersionM365 global developer bootcamp 2019 Intro to SPFx Version
M365 global developer bootcamp 2019 Intro to SPFx VersionThomas Daly
 

Similar to Pour Noël, devenez chrome extensioniste! (20)

So, You Wanna Dev? Join the Team! - WordCamp Raleigh 2017
So, You Wanna Dev? Join the Team! - WordCamp Raleigh 2017 So, You Wanna Dev? Join the Team! - WordCamp Raleigh 2017
So, You Wanna Dev? Join the Team! - WordCamp Raleigh 2017
 
Resume latest Update
Resume latest UpdateResume latest Update
Resume latest Update
 
Best of barcelona symposium experience
Best of barcelona symposium experienceBest of barcelona symposium experience
Best of barcelona symposium experience
 
Transform your Intranet with Drupal and Alfresco - by Optaros
Transform your Intranet with Drupal and Alfresco - by OptarosTransform your Intranet with Drupal and Alfresco - by Optaros
Transform your Intranet with Drupal and Alfresco - by Optaros
 
JavaScript Presentation Frameworks and Libraries
JavaScript Presentation Frameworks and LibrariesJavaScript Presentation Frameworks and Libraries
JavaScript Presentation Frameworks and Libraries
 
Expanding XPages with Bootstrap Plugins for Ultimate Usability
Expanding XPages with Bootstrap Plugins for Ultimate UsabilityExpanding XPages with Bootstrap Plugins for Ultimate Usability
Expanding XPages with Bootstrap Plugins for Ultimate Usability
 
Plugin development demystified 2017
Plugin development demystified 2017Plugin development demystified 2017
Plugin development demystified 2017
 
The Superhero’s Method of Modern HTML5 Development by RapidValue Solutions
The Superhero’s Method of Modern HTML5 Development by RapidValue SolutionsThe Superhero’s Method of Modern HTML5 Development by RapidValue Solutions
The Superhero’s Method of Modern HTML5 Development by RapidValue Solutions
 
Microsoft Teams - A developers perspective
Microsoft Teams - A developers perspectiveMicrosoft Teams - A developers perspective
Microsoft Teams - A developers perspective
 
Kiran-SF Developer
Kiran-SF DeveloperKiran-SF Developer
Kiran-SF Developer
 
Site Manager rocks!
Site Manager rocks!Site Manager rocks!
Site Manager rocks!
 
Swf search final
Swf search finalSwf search final
Swf search final
 
MVC Frameworks for building PHP Web Applications
MVC Frameworks for building PHP Web ApplicationsMVC Frameworks for building PHP Web Applications
MVC Frameworks for building PHP Web Applications
 
Portable single page applications with AngularJS in SharePoint
Portable single page applications with AngularJS in SharePointPortable single page applications with AngularJS in SharePoint
Portable single page applications with AngularJS in SharePoint
 
Rapidly prototyping web applications using BackPress
Rapidly prototyping web applications using BackPressRapidly prototyping web applications using BackPress
Rapidly prototyping web applications using BackPress
 
profile_rajasekar
profile_rajasekarprofile_rajasekar
profile_rajasekar
 
#ESPC18 how to migrate to the #SharePoint Framework?
#ESPC18 how to migrate to the #SharePoint Framework?#ESPC18 how to migrate to the #SharePoint Framework?
#ESPC18 how to migrate to the #SharePoint Framework?
 
M365 global developer bootcamp 2019 Intro to SPFx Version
M365 global developer bootcamp 2019 Intro to SPFx VersionM365 global developer bootcamp 2019 Intro to SPFx Version
M365 global developer bootcamp 2019 Intro to SPFx Version
 
Applications Report
Applications ReportApplications Report
Applications Report
 
DIWD 2011
DIWD 2011DIWD 2011
DIWD 2011
 

More from Paris Salesforce Developer Group

La Tooling API, est-ce pour moi ? Bien sûr, viens voir pourquoi !
La Tooling API, est-ce pour moi ? Bien sûr, viens voir pourquoi !La Tooling API, est-ce pour moi ? Bien sûr, viens voir pourquoi !
La Tooling API, est-ce pour moi ? Bien sûr, viens voir pourquoi !Paris Salesforce Developer Group
 
Scratch orgs...vous pensiez en avoir terminé avec les sandboxes ?
Scratch orgs...vous pensiez en avoir terminé avec les sandboxes ?Scratch orgs...vous pensiez en avoir terminé avec les sandboxes ?
Scratch orgs...vous pensiez en avoir terminé avec les sandboxes ?Paris Salesforce Developer Group
 
Mon Expérience avec le Certified Technical Architect Review Board
 Mon Expérience avec le Certified Technical Architect Review Board Mon Expérience avec le Certified Technical Architect Review Board
Mon Expérience avec le Certified Technical Architect Review BoardParis Salesforce Developer Group
 
DX@Scale: Optimizing Salesforce Development and Deployment for large scale pr...
DX@Scale: Optimizing Salesforce Development and Deployment for large scale pr...DX@Scale: Optimizing Salesforce Development and Deployment for large scale pr...
DX@Scale: Optimizing Salesforce Development and Deployment for large scale pr...Paris Salesforce Developer Group
 
Pratiques administration avancées et techniques de développement
Pratiques administration avancées et techniques de développementPratiques administration avancées et techniques de développement
Pratiques administration avancées et techniques de développementParis Salesforce Developer Group
 
Introducing salesforce shield - Paris Salesforce Developer Group - Oct 15
Introducing salesforce shield - Paris Salesforce Developer Group - Oct 15Introducing salesforce shield - Paris Salesforce Developer Group - Oct 15
Introducing salesforce shield - Paris Salesforce Developer Group - Oct 15Paris Salesforce Developer Group
 
Versionning et travail en équipe avec Salesforce - 27/11/2014
Versionning et travail en équipe avec Salesforce - 27/11/2014Versionning et travail en équipe avec Salesforce - 27/11/2014
Versionning et travail en équipe avec Salesforce - 27/11/2014Paris Salesforce Developer Group
 
Paris Salesforce Developer Group - 16 09 2014 - Summer '14
Paris Salesforce Developer Group - 16 09 2014 - Summer '14Paris Salesforce Developer Group - 16 09 2014 - Summer '14
Paris Salesforce Developer Group - 16 09 2014 - Summer '14Paris Salesforce Developer Group
 

More from Paris Salesforce Developer Group (19)

GraphQL (la nouvelle API de référence de Salesforce ?!)
GraphQL (la nouvelle API de référence de Salesforce ?!)GraphQL (la nouvelle API de référence de Salesforce ?!)
GraphQL (la nouvelle API de référence de Salesforce ?!)
 
La Tooling API, est-ce pour moi ? Bien sûr, viens voir pourquoi !
La Tooling API, est-ce pour moi ? Bien sûr, viens voir pourquoi !La Tooling API, est-ce pour moi ? Bien sûr, viens voir pourquoi !
La Tooling API, est-ce pour moi ? Bien sûr, viens voir pourquoi !
 
Introduction à la plateforme Anypoint de MuleSoft
Introduction à la plateforme Anypoint de MuleSoftIntroduction à la plateforme Anypoint de MuleSoft
Introduction à la plateforme Anypoint de MuleSoft
 
Release spring '22 - Community Groups français
Release spring '22 - Community Groups françaisRelease spring '22 - Community Groups français
Release spring '22 - Community Groups français
 
Scratch orgs...vous pensiez en avoir terminé avec les sandboxes ?
Scratch orgs...vous pensiez en avoir terminé avec les sandboxes ?Scratch orgs...vous pensiez en avoir terminé avec les sandboxes ?
Scratch orgs...vous pensiez en avoir terminé avec les sandboxes ?
 
Mon Expérience avec le Certified Technical Architect Review Board
 Mon Expérience avec le Certified Technical Architect Review Board Mon Expérience avec le Certified Technical Architect Review Board
Mon Expérience avec le Certified Technical Architect Review Board
 
Mieux acheminer les emails avec salesforce
Mieux acheminer les emails avec salesforceMieux acheminer les emails avec salesforce
Mieux acheminer les emails avec salesforce
 
DX@Scale: Optimizing Salesforce Development and Deployment for large scale pr...
DX@Scale: Optimizing Salesforce Development and Deployment for large scale pr...DX@Scale: Optimizing Salesforce Development and Deployment for large scale pr...
DX@Scale: Optimizing Salesforce Development and Deployment for large scale pr...
 
Dreamforce Global Gathering
Dreamforce Global GatheringDreamforce Global Gathering
Dreamforce Global Gathering
 
Getting started with Salesforce DX
Getting started with Salesforce DXGetting started with Salesforce DX
Getting started with Salesforce DX
 
Pratiques administration avancées et techniques de développement
Pratiques administration avancées et techniques de développementPratiques administration avancées et techniques de développement
Pratiques administration avancées et techniques de développement
 
Sensibilisation à la Sécurité Salesforce
Sensibilisation à la Sécurité SalesforceSensibilisation à la Sécurité Salesforce
Sensibilisation à la Sécurité Salesforce
 
Salesforce Performance hacks - Client Side
Salesforce Performance hacks - Client SideSalesforce Performance hacks - Client Side
Salesforce Performance hacks - Client Side
 
Introducing salesforce shield - Paris Salesforce Developer Group - Oct 15
Introducing salesforce shield - Paris Salesforce Developer Group - Oct 15Introducing salesforce shield - Paris Salesforce Developer Group - Oct 15
Introducing salesforce shield - Paris Salesforce Developer Group - Oct 15
 
Meetup 06/2015 - @testsetup
Meetup 06/2015 - @testsetupMeetup 06/2015 - @testsetup
Meetup 06/2015 - @testsetup
 
Meetup Custom Metadata - 1st Part
Meetup Custom Metadata - 1st PartMeetup Custom Metadata - 1st Part
Meetup Custom Metadata - 1st Part
 
Lightning week - Paris DUG
Lightning week - Paris DUGLightning week - Paris DUG
Lightning week - Paris DUG
 
Versionning et travail en équipe avec Salesforce - 27/11/2014
Versionning et travail en équipe avec Salesforce - 27/11/2014Versionning et travail en équipe avec Salesforce - 27/11/2014
Versionning et travail en équipe avec Salesforce - 27/11/2014
 
Paris Salesforce Developer Group - 16 09 2014 - Summer '14
Paris Salesforce Developer Group - 16 09 2014 - Summer '14Paris Salesforce Developer Group - 16 09 2014 - Summer '14
Paris Salesforce Developer Group - 16 09 2014 - Summer '14
 

Recently uploaded

Denver Web Design brochure for public viewing
Denver Web Design brochure for public viewingDenver Web Design brochure for public viewing
Denver Web Design brochure for public viewingbigorange77
 
How is AI changing journalism? (v. April 2024)
How is AI changing journalism? (v. April 2024)How is AI changing journalism? (v. April 2024)
How is AI changing journalism? (v. April 2024)Damian Radcliffe
 
A Good Girl's Guide to Murder (A Good Girl's Guide to Murder, #1)
A Good Girl's Guide to Murder (A Good Girl's Guide to Murder, #1)A Good Girl's Guide to Murder (A Good Girl's Guide to Murder, #1)
A Good Girl's Guide to Murder (A Good Girl's Guide to Murder, #1)Christopher H Felton
 
定制(Management毕业证书)新加坡管理大学毕业证成绩单原版一比一
定制(Management毕业证书)新加坡管理大学毕业证成绩单原版一比一定制(Management毕业证书)新加坡管理大学毕业证成绩单原版一比一
定制(Management毕业证书)新加坡管理大学毕业证成绩单原版一比一Fs
 
Gram Darshan PPT cyber rural in villages of india
Gram Darshan PPT cyber rural  in villages of indiaGram Darshan PPT cyber rural  in villages of india
Gram Darshan PPT cyber rural in villages of indiaimessage0108
 
Sushant Golf City / best call girls in Lucknow | Service-oriented sexy call g...
Sushant Golf City / best call girls in Lucknow | Service-oriented sexy call g...Sushant Golf City / best call girls in Lucknow | Service-oriented sexy call g...
Sushant Golf City / best call girls in Lucknow | Service-oriented sexy call g...akbard9823
 
Russian Call girls in Dubai +971563133746 Dubai Call girls
Russian  Call girls in Dubai +971563133746 Dubai  Call girlsRussian  Call girls in Dubai +971563133746 Dubai  Call girls
Russian Call girls in Dubai +971563133746 Dubai Call girlsstephieert
 
Call Girls in Uttam Nagar Delhi 💯Call Us 🔝8264348440🔝
Call Girls in Uttam Nagar Delhi 💯Call Us 🔝8264348440🔝Call Girls in Uttam Nagar Delhi 💯Call Us 🔝8264348440🔝
Call Girls in Uttam Nagar Delhi 💯Call Us 🔝8264348440🔝soniya singh
 
VIP Call Girls Kolkata Ananya 🤌 8250192130 🚀 Vip Call Girls Kolkata
VIP Call Girls Kolkata Ananya 🤌  8250192130 🚀 Vip Call Girls KolkataVIP Call Girls Kolkata Ananya 🤌  8250192130 🚀 Vip Call Girls Kolkata
VIP Call Girls Kolkata Ananya 🤌 8250192130 🚀 Vip Call Girls Kolkataanamikaraghav4
 
Call Girls South Delhi Delhi reach out to us at ☎ 9711199012
Call Girls South Delhi Delhi reach out to us at ☎ 9711199012Call Girls South Delhi Delhi reach out to us at ☎ 9711199012
Call Girls South Delhi Delhi reach out to us at ☎ 9711199012rehmti665
 
Russian Call Girls in Kolkata Ishita 🤌 8250192130 🚀 Vip Call Girls Kolkata
Russian Call Girls in Kolkata Ishita 🤌  8250192130 🚀 Vip Call Girls KolkataRussian Call Girls in Kolkata Ishita 🤌  8250192130 🚀 Vip Call Girls Kolkata
Russian Call Girls in Kolkata Ishita 🤌 8250192130 🚀 Vip Call Girls Kolkataanamikaraghav4
 
VIP Kolkata Call Girl Alambazar 👉 8250192130 Available With Room
VIP Kolkata Call Girl Alambazar 👉 8250192130  Available With RoomVIP Kolkata Call Girl Alambazar 👉 8250192130  Available With Room
VIP Kolkata Call Girl Alambazar 👉 8250192130 Available With Roomdivyansh0kumar0
 
Call Girls Service Adil Nagar 7001305949 Need escorts Service Pooja Vip
Call Girls Service Adil Nagar 7001305949 Need escorts Service Pooja VipCall Girls Service Adil Nagar 7001305949 Need escorts Service Pooja Vip
Call Girls Service Adil Nagar 7001305949 Need escorts Service Pooja VipCall Girls Lucknow
 
VIP Kolkata Call Girl Salt Lake 👉 8250192130 Available With Room
VIP Kolkata Call Girl Salt Lake 👉 8250192130  Available With RoomVIP Kolkata Call Girl Salt Lake 👉 8250192130  Available With Room
VIP Kolkata Call Girl Salt Lake 👉 8250192130 Available With Roomishabajaj13
 
VIP 7001035870 Find & Meet Hyderabad Call Girls Dilsukhnagar high-profile Cal...
VIP 7001035870 Find & Meet Hyderabad Call Girls Dilsukhnagar high-profile Cal...VIP 7001035870 Find & Meet Hyderabad Call Girls Dilsukhnagar high-profile Cal...
VIP 7001035870 Find & Meet Hyderabad Call Girls Dilsukhnagar high-profile Cal...aditipandeya
 
Chennai Call Girls Porur Phone 🍆 8250192130 👅 celebrity escorts service
Chennai Call Girls Porur Phone 🍆 8250192130 👅 celebrity escorts serviceChennai Call Girls Porur Phone 🍆 8250192130 👅 celebrity escorts service
Chennai Call Girls Porur Phone 🍆 8250192130 👅 celebrity escorts servicesonalikaur4
 
定制(AUT毕业证书)新西兰奥克兰理工大学毕业证成绩单原版一比一
定制(AUT毕业证书)新西兰奥克兰理工大学毕业证成绩单原版一比一定制(AUT毕业证书)新西兰奥克兰理工大学毕业证成绩单原版一比一
定制(AUT毕业证书)新西兰奥克兰理工大学毕业证成绩单原版一比一Fs
 
10.pdfMature Call girls in Dubai +971563133746 Dubai Call girls
10.pdfMature Call girls in Dubai +971563133746 Dubai Call girls10.pdfMature Call girls in Dubai +971563133746 Dubai Call girls
10.pdfMature Call girls in Dubai +971563133746 Dubai Call girlsstephieert
 

Recently uploaded (20)

Denver Web Design brochure for public viewing
Denver Web Design brochure for public viewingDenver Web Design brochure for public viewing
Denver Web Design brochure for public viewing
 
Rohini Sector 26 Call Girls Delhi 9999965857 @Sabina Saikh No Advance
Rohini Sector 26 Call Girls Delhi 9999965857 @Sabina Saikh No AdvanceRohini Sector 26 Call Girls Delhi 9999965857 @Sabina Saikh No Advance
Rohini Sector 26 Call Girls Delhi 9999965857 @Sabina Saikh No Advance
 
How is AI changing journalism? (v. April 2024)
How is AI changing journalism? (v. April 2024)How is AI changing journalism? (v. April 2024)
How is AI changing journalism? (v. April 2024)
 
A Good Girl's Guide to Murder (A Good Girl's Guide to Murder, #1)
A Good Girl's Guide to Murder (A Good Girl's Guide to Murder, #1)A Good Girl's Guide to Murder (A Good Girl's Guide to Murder, #1)
A Good Girl's Guide to Murder (A Good Girl's Guide to Murder, #1)
 
定制(Management毕业证书)新加坡管理大学毕业证成绩单原版一比一
定制(Management毕业证书)新加坡管理大学毕业证成绩单原版一比一定制(Management毕业证书)新加坡管理大学毕业证成绩单原版一比一
定制(Management毕业证书)新加坡管理大学毕业证成绩单原版一比一
 
Gram Darshan PPT cyber rural in villages of india
Gram Darshan PPT cyber rural  in villages of indiaGram Darshan PPT cyber rural  in villages of india
Gram Darshan PPT cyber rural in villages of india
 
Sushant Golf City / best call girls in Lucknow | Service-oriented sexy call g...
Sushant Golf City / best call girls in Lucknow | Service-oriented sexy call g...Sushant Golf City / best call girls in Lucknow | Service-oriented sexy call g...
Sushant Golf City / best call girls in Lucknow | Service-oriented sexy call g...
 
Russian Call girls in Dubai +971563133746 Dubai Call girls
Russian  Call girls in Dubai +971563133746 Dubai  Call girlsRussian  Call girls in Dubai +971563133746 Dubai  Call girls
Russian Call girls in Dubai +971563133746 Dubai Call girls
 
Call Girls in Uttam Nagar Delhi 💯Call Us 🔝8264348440🔝
Call Girls in Uttam Nagar Delhi 💯Call Us 🔝8264348440🔝Call Girls in Uttam Nagar Delhi 💯Call Us 🔝8264348440🔝
Call Girls in Uttam Nagar Delhi 💯Call Us 🔝8264348440🔝
 
VIP Call Girls Kolkata Ananya 🤌 8250192130 🚀 Vip Call Girls Kolkata
VIP Call Girls Kolkata Ananya 🤌  8250192130 🚀 Vip Call Girls KolkataVIP Call Girls Kolkata Ananya 🤌  8250192130 🚀 Vip Call Girls Kolkata
VIP Call Girls Kolkata Ananya 🤌 8250192130 🚀 Vip Call Girls Kolkata
 
Call Girls South Delhi Delhi reach out to us at ☎ 9711199012
Call Girls South Delhi Delhi reach out to us at ☎ 9711199012Call Girls South Delhi Delhi reach out to us at ☎ 9711199012
Call Girls South Delhi Delhi reach out to us at ☎ 9711199012
 
Russian Call Girls in Kolkata Ishita 🤌 8250192130 🚀 Vip Call Girls Kolkata
Russian Call Girls in Kolkata Ishita 🤌  8250192130 🚀 Vip Call Girls KolkataRussian Call Girls in Kolkata Ishita 🤌  8250192130 🚀 Vip Call Girls Kolkata
Russian Call Girls in Kolkata Ishita 🤌 8250192130 🚀 Vip Call Girls Kolkata
 
VIP Kolkata Call Girl Alambazar 👉 8250192130 Available With Room
VIP Kolkata Call Girl Alambazar 👉 8250192130  Available With RoomVIP Kolkata Call Girl Alambazar 👉 8250192130  Available With Room
VIP Kolkata Call Girl Alambazar 👉 8250192130 Available With Room
 
Call Girls Service Adil Nagar 7001305949 Need escorts Service Pooja Vip
Call Girls Service Adil Nagar 7001305949 Need escorts Service Pooja VipCall Girls Service Adil Nagar 7001305949 Need escorts Service Pooja Vip
Call Girls Service Adil Nagar 7001305949 Need escorts Service Pooja Vip
 
VIP Kolkata Call Girl Salt Lake 👉 8250192130 Available With Room
VIP Kolkata Call Girl Salt Lake 👉 8250192130  Available With RoomVIP Kolkata Call Girl Salt Lake 👉 8250192130  Available With Room
VIP Kolkata Call Girl Salt Lake 👉 8250192130 Available With Room
 
VIP 7001035870 Find & Meet Hyderabad Call Girls Dilsukhnagar high-profile Cal...
VIP 7001035870 Find & Meet Hyderabad Call Girls Dilsukhnagar high-profile Cal...VIP 7001035870 Find & Meet Hyderabad Call Girls Dilsukhnagar high-profile Cal...
VIP 7001035870 Find & Meet Hyderabad Call Girls Dilsukhnagar high-profile Cal...
 
Chennai Call Girls Porur Phone 🍆 8250192130 👅 celebrity escorts service
Chennai Call Girls Porur Phone 🍆 8250192130 👅 celebrity escorts serviceChennai Call Girls Porur Phone 🍆 8250192130 👅 celebrity escorts service
Chennai Call Girls Porur Phone 🍆 8250192130 👅 celebrity escorts service
 
定制(AUT毕业证书)新西兰奥克兰理工大学毕业证成绩单原版一比一
定制(AUT毕业证书)新西兰奥克兰理工大学毕业证成绩单原版一比一定制(AUT毕业证书)新西兰奥克兰理工大学毕业证成绩单原版一比一
定制(AUT毕业证书)新西兰奥克兰理工大学毕业证成绩单原版一比一
 
10.pdfMature Call girls in Dubai +971563133746 Dubai Call girls
10.pdfMature Call girls in Dubai +971563133746 Dubai Call girls10.pdfMature Call girls in Dubai +971563133746 Dubai Call girls
10.pdfMature Call girls in Dubai +971563133746 Dubai Call girls
 
Model Call Girl in Jamuna Vihar Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in  Jamuna Vihar Delhi reach out to us at 🔝9953056974🔝Model Call Girl in  Jamuna Vihar Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Jamuna Vihar Delhi reach out to us at 🔝9953056974🔝
 

Pour Noël, devenez chrome extensioniste!

  • 1. For Christmas, build your own chrome extension! Nicolas Despres Program Architect 13 Décembre 2023 @ Isdi France
  • 2. Program Architect Salesforce Extension Publisher SF Explorer Nicolas Despres #BroForce How I Met Web Extensions
  • 3. Understand the architecture and offered possibilities Understand the ecosystem and most popular apps Deep dive and manual to go further Yes you can! Session objectives
  • 4.
  • 5. November 2022 Second assignment, LWC + D3 dataviz to understand omnistudio… Insurance Product visualisation managed package developed for AG2R Release 1.0 Release 0.1 Compare Flexipage for AG2R with Santos! February 2023 June 2023 October 2023 My Journey @Salesforce today Release 2.0 and a new package Learning about Web Extensions march 2023 Unified Design for Salesforce Setup Goal! May 2022 Joined SF, 3 months on trailhead About 250 users
  • 6. Agenda I. What are chrome extensions? II. Some example III. Reasons to build your extension IV. Reasons behind SF Explorer V. Enough! Show me some code! VI. Q&A
  • 7. I. What are chrome extensions?
  • 8. “Web Extensions are software programs built on web technologies that enable users to customize the browsing experience.” It provide things like: 1. Productivity tools. 2. Web page content enrichment. 3. Information aggregation.
  • 9. ChatGPT “Productivity is a measure of how efficient you are at what you do. Productivity tools are software designed to simplify tasks and streamline your work. “
  • 10. ● Easy to develop, only js & html ○ a user experience can be base on the Salesforce Design System ● Access to OSS ecosystem ● Cors ready ● Multiorg support ● Native UX (shortcuts, storage, panel...) ● Automatic updates ● No need to be admin of your org to install/use it ● A single installation is enough for all your orgs ● A fast security review ● Free (5$ to be publisher) ● At your Organization level: ○ required ○ forbidden ○ restricted Why develop extensions? Capabilities Deployment Top reasons How awesome is that?!
  • 12. II. Example of some ‘cool’ extensions
  • 16. Lightly Intrusive Very Intrusive Intrusive Intrusive Non Intrusive Non Intrusive Salesforce Admin extensions
  • 17. Inject code into all your page ! Do not inject code or inject code only when you decide Admin Extension Categories Intrusive Non-Intrusive
  • 18. III. Reasons to make your own extensions
  • 19. ● Doing it to help YOU ● Be more productive ● Learn something new ● Do something that does not exist or no solution satisfies you Why develop your own extension? Good reasons Cautions Top reasons ● Get ready to be criticized ● Get ready to work extra time
  • 21. IV. Reasons behind SF Explorer
  • 22. When I discovered salesforce 18 months ago… How can I compare 2 flexipages? Can I use a StoryBook to document my LWC components? Can I use a dark mode?
  • 23. How I met your mother S4EP14
  • 24. Principle Possible Impossible Dark Theme Custom Object Show API Name User Permission Dynamic Form
  • 25. Principle Possible Impossible Dark Theme Custom Object Show API Name User Permission Dynamic Form “possimpible”
  • 26. Did you say impossible?
  • 28.
  • 29. Modern Tech Built on top of React, Typescript and JSForce. 2 Strong Foundation WebExtension with Native Multiorg Support 1 Salesforce UX Use Salesforce Lightning Design System together with Browser Native capabilities 4 Advanced Capabilities Excel like and advanced text edition capabilities to ease your explorations 3 Non Intrusive Salesforce Explorer Tech stack
  • 30. SF Explorer - Advanced Setup The same setup UI, but better… Today on pset and custom object but tomorrow generalized in other entry points What about helping the admin with contextualized info from our orgs?
  • 31. Modern Tech Built on top of Typescript and dom-chef. 2 Strong Foundation WebExtension with storage permission and lightweight footprint 1 Salesforce Embedded Your setup, but enhanced! 4 Configurable Select what message you want to add in the setup screen 3 Intrusive Salesforce Explorer - Advanced Setup Tech stack (lighter)
  • 32. Joined Salesforce A lot to learn and catch up on… 05-2022 LWC Tool for omnistudio Sent on a 2 weeks audit mission and need to understand implemented omniscripts -> needed a tool for that… 11-2022 Product Visualisation / Managed Package Published a managed package and started looking at the app exchange to publish it 02-2023 Discovering chrome extension Study Salesforce Inspector and other options. Start implementing Flexipage Compare for AG2R 05-2023 Version 1.0 A lot of features and difficult for users to understand how to use the tool without assistance 09-2023 Version 2.0 Improved UX (tab panel) Full rewrite 11-2023
  • 33. V. Show me some code!
  • 34. Outside of Chrome UI Background Toolbar button badge Popup window Option window Notification Menu / Option data Contents Script Background Script Context menu Web page JavaScript HTML CSS JavaScript HTML CSS JavaScript CSS Service_worker (JavaScript) External API storage bookmark chrome.message notification runtime.message runtime.message Inside of Chrome External API alarm action browserAction history contextMenus fileSystemProvider pageCapture printing OS cookie Chrome Data
  • 35.
  • 36. { "name": "Salesforce Explorer - Enhanced Setup", "version": "0.0.4", "description": "Enhance your Salesforce setup", "homepage_url": "https://sf-explorer.github.io/documentation/", "manifest_version": 3, "author": "Nicolas Despres", "icons": { "128": "logo128.png" }, "permissions": ["storage", "cookies"], "host_permissions": [ "https://*.salesforce.com/*" ], "background": { "service_worker": "background.js", "type": "module" }, "content_scripts": [ { "matches": [ "https://*.salesforce.com/*newPermissionSet*" ], "js": ["setup-enhance.js", "force.min.js"], "all_frames": true } ] } manifest.json
  • 37. Background data Contents Script Background Script Salesforce page JavaScript CSS Service_worker (JavaScript) storage runtime.message Inside of Chrome cookie Chrome Data
  • 38. chrome.runtime.onMessage.addListener((request, sender, sendResponse) => { if (request.message == "getSession") { chrome.cookies.get({ url: request.sfHost, name: "sid", }, sessionCookie => { sendResponse(sessionCookie.value) }) return true; } return false }) Contents script async function getSession(sfHost: string) { return new Promise<any>(resolve => chrome.runtime.sendMessage( { message: "getSession", sfHost }, resolve) ) } export async function jsforce() { return new (window as any).jsforce.Connection({ instanceUrl: window.location.origin, accessToken: getSession(window.location.host), version: '59.0', }) } background.js The rest is DOM manipulation
  • 39.
  • 43. Join the #BroForce! “A Bro is always entitled to do something stupid, as long as the rest of his Bros are all doing it.”
  • 44. “You can ask the universe for signs all you want, but ultimately we only see what we want to see when we’re ready to see it.” — Ted Mosby “Sometimes we search for one thing but discover another.” — Lily Aldrin Inspirational Quotes “Nothing in this world that’s worth having comes easy.” — Dr. John Beckwith “Whatever you do in this life, it’s not legendary unless your friends are there to see it.” — Ted Mosby
  • 45. “A Bro is always entitled to do something stupid, as long as the rest of his Bros are all doing it.” “Whenever I’m sad, I just stop being sad and be legendary instead.” “When life gets you down, just remember there’s a whole world out there waiting for you.” “When I’m feeling low, I just remind myself that I’m too awesome to be sad.”
  • 46. ● Eval is not allowed ● Monaco integration ● JSForce on the browser Challenges faced Technical User feedback ● Difficulty to understand how to use it ● To many features…
  • 47. Q&A