Created
October 18, 2020 14:33
-
-
Save vbooka1/2def4019273d2a9134e51186876b2e4b to your computer and use it in GitHub Desktop.
manifest.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"description": "A small Firefox extension for web app security testers (aka. pentesters). It allows visualizing and manipulating form elements and clearing cookies and local storage data with a single action.", | |
"manifest_version": 2, | |
"name": "FormVisualizer", | |
"version": "1.3.1", | |
"homepage_url": "https://github.com/t-tera/FormVisualizer", | |
"icons": { | |
"48": "icons/icon.svg" | |
}, | |
"permissions": ["<all_urls>","menus","browsingData","webRequest"], | |
"browser_action": { | |
"default_icon": "icons/icon.svg", | |
"default_title": "FormVisualizer", | |
"default_popup": "popup/menu.html" | |
}, | |
"content_scripts": [ | |
{ | |
"matches": ["*://*/"], | |
"js": ["js/content/cs_main.js"], | |
"all_frames": true | |
} | |
], | |
"web_accessible_resources": [], | |
"background": { | |
"scripts": ["js/common/cm_main.js", "js/background/bg_main.js"] | |
}, | |
"applications": { | |
"gecko": { | |
"id": "[email protected]" | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment