Data is synced from the Chrome Web Store. View the official store page for the most current information.
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Uniswap Extension",
"description": "The Uniswap Extension is a self-custody crypto wallet that's built for swapping.",
"version": "1.68.0.0",
"minimum_chrome_version": "116",
"icons": {
"16": "assets\/icon16.png",
"32": "assets\/icon32.png",
"48": "assets\/icon48.png",
"128": "assets\/icon128.png"
},
"action": {
"default_icon": {
"16": "assets\/icon16.png",
"32": "assets\/icon32.png",
"48": "assets\/icon48.png",
"128": "assets\/icon128.png"
}
},
"side_panel": {
"default_path": "sidepanel.html"
},
"background": {
"service_worker": "background.js",
"type": "module"
},
"permissions": [
"alarms",
"notifications",
"sidePanel",
"storage",
"tabs"
],
"host_permissions": [
"https:\/\/*.uniswap.org\/*"
],
"externally_connectable": {
"ids": [],
"matches": [
"https:\/\/app.uniswap.org\/*"
]
},
"commands": {
"_execute_action": {
"suggested_key": {
"default": "Ctrl+Shift+U",
"mac": "Command+Shift+U"
},
"description": "Toggles the sidebar"
}
},
"content_scripts": [
{
"id": "injected",
"matches": [
"http:\/\/127.0.0.1\/*",
"http:\/\/localhost\/*",
"https:\/\/*\/*"
],
"js": [
"injected.js"
],
"run_at": "document_start",
"all_frames": true
},
{
"id": "ethereum",
"matches": [
"http:\/\/127.0.0.1\/*",
"http:\/\/localhost\/*",
"https:\/\/*\/*"
],
"js": [
"ethereum.js"
],
"run_at": "document_start",
"world": "MAIN",
"all_frames": true
}
]
}