HTTP Web Headers
Inspect and view HTTP request headers for the website in view: the status, any possible redirection and all the headers.
HTTP Web Headers란 무엇입니까?
HTTP Web Headers은(는) anne.neidan에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Inspect and view HTTP request headers for the website in view: the status, any possible redirection and all the headers."입니다.
확장 프로그램 스크린샷
HTTP Web Headers 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
The fastest and easiest way to view all the HTTP headers of a website. Not only that but you will be able to see the website status code and if there is any redirection made. Just load any website and click on the icon to see the headers. If you are creating websites this will save you a lot of time as you don't need to install any software to see the requests, the extension will do it for you. You load the page, click the extension and you can see all the headers from any website including cookies, status and redirects. If this extension has helped your development time, make sure to rate it with 5 stars or give additional feedback.
확장 프로그램 기본 정보
이름 | |
ID | nkkfapocdhadnbeifhfglmmidnadggeh |
공식 URL | https://chrome.google.com/webstore/detail/nkkfapocdhadnbeifhfglmmidnadggeh |
설명 | Inspect and view HTTP request headers for the website in view: the status, any possible redirection and all the headers. |
파일 크기 | 55.49 KB |
설치 횟수 | 107 |
현재 버전 | 1.1.0 |
최근 업데이트 | 2022-07-19 |
출시 날짜 | 2020-06-29 |
평점 | 5.00/5 총 4 개의 평점 |
개발자 | anne.neidan |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "author": "Anne Neidan", "background": { "persistent": true, "scripts": [ "background.js" ] }, "browser_action": { "default_icon": "icons\/icon-48.png", "default_popup": "popup.html", "default_title": "Inspect HTTP Web Headers" }, "description": "Inspect and view HTTP request headers for the website in view: the status, any possible redirection and all the headers.", "icons": { "16": "icons\/icon-16.png", "38": "icons\/icon-38.png", "48": "icons\/icon-48.png", "64": "icons\/icon-64.png", "128": "icons\/icon-128.png" }, "manifest_version": 2, "name": "HTTP Web Headers", "offline_enabled": true, "permissions": [ "tabs", "activeTab", "webRequest", "webRequestBlocking", "webNavigation", "storage", "*:\/\/*\/*" ], "short_name": "HTTP Headers", "version": "1.1.0", "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "content-scripts\/idle.js" ], "all_frames": true, "run_at": "document_idle" }, { "matches": [ "*:\/\/*\/*" ], "js": [ "content-scripts\/start.js" ], "all_frames": true, "run_at": "document_start" } ] } |