DamnWebScanner/Plugin/manifest.json

36 lines
645 B
JSON
Raw Normal View History

{
"manifest_version": 2,
// Extension's informations
"name": "Damn Website Scanner",
"description": "This extension will crawl a website to check for common vulnerabilities",
"version": "1.0",
"browser_action": {
"default_icon": "icon.png",
"default_popup": "popup.html"
},
// Permissions of the extension
"permissions": [
"activeTab",
"tabs",
"notifications",
"storage"
],
// Script files
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["popup.js"]
}
],
// Background script to catch new/updated tab
"background": {
"scripts": ["background.js"]
}
}