Skip to content

Instantly share code, notes, and snippets.

@vbooka1
Created October 18, 2020 14:33
Show Gist options
  • Save vbooka1/2def4019273d2a9134e51186876b2e4b to your computer and use it in GitHub Desktop.
Save vbooka1/2def4019273d2a9134e51186876b2e4b to your computer and use it in GitHub Desktop.
manifest.json
{
"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": "formvisualizer@github.com"
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment