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": "Mouse4 Go-Back Block",
"version": "1.3",
"description": "Blocks browser go-back navigation when pressing Mouse4",
"action": {
"default_popup": "main\/popup.html",
"default_icon": {
"16": "images\/icon16.png",
"48": "images\/icon48.png",
"128": "images\/icon128.png"
}
},
"icons": {
"16": "images\/icon16.png",
"48": "images\/icon48.png",
"128": "images\/icon128.png"
},
"permissions": [
"storage",
"activeTab",
"scripting"
],
"background": {
"service_worker": "main\/background.js"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"main\/content.js"
],
"run_at": "document_start"
}
],
"host_permissions": [
"<all_urls>"
],
"web_accessible_resources": [
{
"resources": [
"images\/*"
],
"matches": [
"<all_urls>"
]
}
]
}