Connect your browser with Split App.
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": "Connect your browser with Split App.",
"version": "3.0.1",
"manifest_version": 3,
"name": "Split Desktop Extension",
"author": "split.co",
"background": {
"service_worker": "background.bundle.js"
},
"permissions": [
"tabs",
"alarms",
"webRequest",
"cookies",
"webNavigation",
"storage",
"scripting",
"activeTab",
"unlimitedStorage"
],
"host_permissions": [
"http://*/*",
"https://*/*",
"<all_urls>"
],
"options_page": "options.html",
"action": {
"default_popup": "popup.html",
"default_icon": "icon.png"
},
"icons": {
"16": "icon.png",
"48": "icon-48.png",
"128": "icon-128.png"
},
"content_scripts": [
{
"matches": [
"http://*/*",
"https://*/*",
"<all_urls>"
],
"js": [
"contentScript.bundle.js"
],
"css": [
"content.styles.css"
]
}
],
"web_accessible_resources": [
{
"resources": [
"content.styles.css",
"icon-128.png",
"icon-48.png",
"icon.png"
],
"matches": []
}
]
}