Files
beef/extensions/demos/chrome_extension/manifest.json

18 lines
599 B
JSON

{
//originally created by Nithin Bekal
"name": "BeEF vulnerable chrome extensions (TodoList)",
"version": "1.0",
// when the browser icon is clicked, a new tab is open to maintain persistence (chrome.tabs.create)
// for the sake of testing...unfortunately the popup is closed when the user is not focusing on it.
// See at the end of index.html file.
"description": "A simple todo list in HTML5 with localStorage, vulnerable to XSS.",
"browser_action": {
"default_icon": "favicon.ico",
"popup": "index.html"
},
"permissions": [
"tabs",
"http://*/*",
"https://*/*"
]
}