This commit is contained in:
bob.rao
2023-04-14 15:59:21 +08:00
parent e6b5c6f0af
commit c766e8808c
6 changed files with 214 additions and 0 deletions

28
manifest.json Normal file
View File

@@ -0,0 +1,28 @@
{
"manifest_version": 2,
"name": "Bulk Delete ChatGPT Conversations",
"version": "1.0",
"description": "A Chrome extension to bulk delete ChatGPT conversations.",
"icons": {
"48": "icon48.png"
},
"permissions": [
"activeTab",
"storage",
"declarativeContent",
"webRequest",
"webRequestBlocking",
"<all_urls>"
],
"browser_action": {
"default_icon": "icon48.png",
"default_popup": "popup.html"
},
"content_scripts": [
{
"matches": ["https://chat.openai.com/*"],
"js": ["content.js"]
}
]
}