Data is synced from the Chrome Web Store. View the official store page for the most current information.
This extension is no longer available on the Chrome Web Store. We noticed it was gone on Jul 19, 2025.
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Log Extractor",
"version": "3.0.2",
"description": "Captures network requests, console logs, and system metrics for debugging",
"permissions": [
"storage",
"webRequest",
"scripting",
"downloads",
"system.cpu",
"system.memory",
"activeTab",
"tabs"
],
"host_permissions": [
"*:\/\/*.five9.com\/*",
"*:\/\/*.app.five9.com\/*",
"https:\/\/app.five9.com\/clients\/integrations\/sfli.main.html*",
"*:\/\/*.salesforce.com\/*",
"*:\/\/*.force.com\/*",
"*:\/\/*.lightning.force.com\/*"
],
"action": {
"default_popup": "popup.html",
"default_icon": {
"48": "icon48.png"
}
},
"background": {
"service_worker": "background.js"
},
"devtools_page": "devtools.html",
"content_scripts": [
{
"matches": [
"*:\/\/*.five9.com\/*",
"*:\/\/*.salesforce.com\/*",
"*:\/\/*.force.com\/*",
"*:\/\/*.lightning.force.com\/*"
],
"js": [
"content_script.js"
],
"run_at": "document_idle"
},
{
"matches": [
"*:\/\/*.five9.com\/*",
"*:\/\/*.salesforce.com\/*",
"*:\/\/*.force.com\/*",
"*:\/\/*.lightning.force.com\/*"
],
"js": [
"jszip.min.js"
],
"run_at": "document_idle"
}
],
"web_accessible_resources": [
{
"resources": [
"uisettings",
"native_devtools_panel.js",
"zipper.html",
"zipper.js",
"jszip.min.js"
],
"matches": [
"*:\/\/*.five9.com\/*",
"*:\/\/*.salesforce.com\/*",
"*:\/\/*.force.com\/*",
"*:\/\/*.lightning.force.com\/*"
]
}
],
"icons": {
"48": "icon48.png"
}
}