Add tool to clean up facebook

This commit is contained in:
James Guan
2026-09-15 21:41:27 -04:00
commit 48839bca78
7 changed files with 1030 additions and 0 deletions
+25
View File
@@ -0,0 +1,25 @@
{
"manifest_version": 3,
"name": "FB Activity Cleaner",
"version": "1.0.6",
"description": "Bulk-clean Facebook Activity Log: delete comments and shared posts with skip rules.",
"permissions": ["storage", "activeTab", "scripting"],
"host_permissions": ["https://www.facebook.com/*", "https://facebook.com/*"],
"action": {
"default_title": "FB Activity Cleaner",
"default_popup": "popup.html"
},
"content_scripts": [
{
"matches": ["https://www.facebook.com/*", "https://facebook.com/*"],
"js": ["content.js"],
"css": ["panel.css"],
"run_at": "document_idle"
}
],
"icons": {
"16": "icons/icon16.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
}
}