Displays a sidebar that lets you to forge HTTP requests. Press Ctrl+Shift+Y to show the sidebar and make your own HTTP request. You can choose the method GET, HEAD, POST, OPTIONS, PUT DELETE and the body data to send. Response in the main window.
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"manifest_version": 2,
"name": "HTTP request Maker",
"description": "Displays a sidebar that lets you to forge HTTP requests",
"version": "1.3",
"applications": {
"gecko": {
"strict_min_version": "54.0a1"
}
},
"sidebar_action": {
"default_icon": "icons/icon_final64.png",
"default_title": "HTTP request Maker",
"default_panel": "sidebar/panel.html"
},
"icons": {
"48": "icons/icon48.png",
"96": "icons/icon96.png"
},
"permissions": [
"storage",
"webRequest",
"webRequestBlocking",
"*://*/*",
"<all_urls>",
"tabs"
],
"commands": {
"_execute_sidebar_action": {
"suggested_key": {
"default": "Alt+Shift+Y"
}
}
}
}