The fastest way to update Salesforce. Manage your pipeline, notes & tasks. Designed for sales teams. Auto-synced to Salesforce.
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"update_url": "https://clients2.google.com/service/update2/crx",
"description": "The fastest way to update Salesforce. Manage your pipeline, notes & tasks. Designed for sales teams. Auto-synced to Salesforce.",
"version": "2.66.0",
"manifest_version": 3,
"name": "Weflow",
"background": {
"service_worker": "background.bundle.js"
},
"permissions": [
"tabs",
"scripting",
"webNavigation",
"storage"
],
"host_permissions": [
"<all_urls>"
],
"commands": {
"search-shortcut": {
"suggested_key": {
"default": "Alt+J",
"windows": "Alt+J",
"mac": "Command+J"
},
"description": "Weflow Search"
}
},
"action": {
"default_icon": {
"16": "icon-16.png",
"32": "icon-32.png"
}
},
"chrome_url_overrides": {},
"icons": {
"16": "icon-16.png",
"32": "icon-32.png",
"48": "icon-48.png",
"128": "icon-128-actually-96.png"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"contentScript.bundle.js"
],
"css": [
"content.styles.css"
]
}
],
"web_accessible_resources": [
{
"resources": [
"content.styles.css",
"icon-16.png",
"icon-32.png",
"icon-48.png",
"icon-128-actually-96.png",
"sign-up-modal-background.png",
"logo-full.svg",
"yoyo.png",
"racquet.png",
"joystick.png",
"/fonts/*"
],
"matches": [
"<all_urls>"
]
}
]
}