準備
以下を、それぞれブックマークのURLに貼り付けて保存する。
- postmanにpost
javascript:var form = document.createElement('form');document.body.appendChild(form);form.setAttribute('action', 'https://postman-echo.com/post');form.setAttribute('method','POST');form.submit();
- 指定したURLにpost
javascript:var form = document.createElement('form');document.body.appendChild(form);form.setAttribute('action', window.prompt(%27任意のURLを入力してください%27,%27https://postman-echo.com/post%27));form.setAttribute('method','POST');form.submit();
実行
実行時に押下するだけ。
今後の展望
送信データも設定できるようにしたい。