Since I am learning about HTTP packets and chrome extension, I thought of developing an extenison which could extract the GET and POST arguments of a website?
Is it possible using chrome extension?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
GET is embedded data in the URL
Example : http://stackoverflow.com?username=user782400
You can fetch the data in
URL's usernamein POST
where data is posted back to server , using forms … you need to know to field names which are posted to fetch the data.
Best thing is Use JQuery
jQuery.get()to GETPOST