mirror of
https://github.com/agresdominik/file-leak.git
synced 2026-04-21 18:05:48 +00:00
moved files for structure
This commit is contained in:
@@ -0,0 +1,50 @@
|
||||
{
|
||||
"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"]
|
||||
}
|
||||
],
|
||||
"browser_specific_settings": {
|
||||
"gecko": {
|
||||
"id": "dominik@agres.online",
|
||||
"strict_min_version": "120.0",
|
||||
"data_collection_permissions": {
|
||||
"collects_diagnostic_data": false,
|
||||
"collects_usage_data": false,
|
||||
"required": ["none"]
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user