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",
"name": "Retrace Extension",
"version": "1.1.7",
"manifest_version": 3,
"description": "Retrace - A browser Extension to help you retrace your steps on the internet",
"background": {
"service_worker": "background.js",
"type": "module"
},
"action": {
"default_popup": "",
"default_icon": {
"16": "icons\/newicon16gray.png",
"48": "icons\/newicon48gray.png",
"128": "icons\/newicon128gray.png"
}
},
"icons": {
"16": "icons\/newicon16gray.png",
"48": "icons\/newicon48gray.png",
"128": "icons\/newicon128gray.png"
},
"side_panel": {
"default_path": "sidepanel.html"
},
"options_ui": {
"page": "options.html",
"open_in_tab": true
},
"permissions": [
"sidePanel",
"contextMenus",
"storage",
"activeTab",
"tabs",
"scripting"
],
"host_permissions": [
"https:\/\/*\/*",
"http:\/\/*\/*"
],
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"content.js"
]
}
],
"web_accessible_resources": [
{
"resources": [
"icons\/newicon128white.png",
"icons\/newicon128gray.png",
"constants.js"
],
"matches": [
"<all_urls>"
]
}
]
}