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 είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον anne.neidan, και η κύρια λειτουργία του είναι "Inspect and view HTTP request headers for the website in view: the status, any possible redirection and all the headers.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης HTTP Web Headers
Λήψη αρχείων επέκτασης 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 |
Επίσημο 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" } ] } |