Proof of concept

This commit is contained in:
2025-11-13 19:03:30 +01:00
commit 654efe3416
10 changed files with 372 additions and 0 deletions
+39
View File
@@ -0,0 +1,39 @@
{
"manifest_version": 2,
"name": "File-Leak",
"version": "1.0",
"description": "Find hidden files on websites you visit which are not supposed to be there",
"homepage_url": "https://agres.online",
"icons": {
"32": "static/icons/icon32.png",
"48": "static/icons/icon48.png"
},
"permissions": [
"webNavigation",
"storage",
"<all_urls>",
"http://*/*",
"https://*/*"
],
"browser_action": {
"default_icon": "static/icons/icon48.png",
"default_title": "File-leak",
"default_popup": "popup/html/main.html"
},
"background": {
"scripts": ["popup/js/background.js"],
"persistent": false
},
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["popup/js/visual.js"]
}
]
}