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": "DeepSeek Chat Cleaner",
"version": "1.0.1",
"description": "Install this extension to quickly delete individual, multiple, or all DeepSeek chats right from the DeepSeek page.",
"permissions": [
"notifications"
],
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"content.js"
]
}
],
"background": {
"service_worker": "background.js"
},
"action": {
"default_popup": "popup.html"
},
"host_permissions": [
"<all_urls>"
],
"icons": {
"16": "ICON 16.png",
"32": "ICON 32.png",
"64": "ICON 64.png",
"128": "ICON 128.png",
"512": "ICON 512.png"
}
}