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文件
下載HTTP Web Headers擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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 |
官方網址 | 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" } ] } |