javascript - Difference between normal (popup) Chrome extension and an extension that adds a tab in developer tools -
as long title suggests, know differences between normal extension (popup) , 1 adds new tab in developer tools. example latter observe point.
i new chrome extensions. tried research it, failed find answer. there seems little information extensions hidden, observe point.
i need know if possible intercept response server using normal extension. nice know differences between them.
thank in advance!
"normal" extensions popup.html
using popups, , popups can specified through browser action or page action.
extensions observe point devtools extension, extending devtools , add functionality chrome devtools.
as "intercept response", has no direct relationship type of extension is, long declare webrequest
along host permissions in manifest.json
, observer, analyze, intercept, block or modify network requests in-flight wish.
more details take @ chrome.webrequest, there detailed examples.
updated: modifying http responses, see thread chrome extension - modifying http response more details.
Comments
Post a Comment