https://github.com/simone-di-paolo/response-headers-values-checker
This extension will create a Popup that will show the requested value without opening the network tab (if exist).
https://github.com/simone-di-paolo/response-headers-values-checker
chrome chrome-extension extension headers manifest-v3 response
Last synced: about 1 month ago
JSON representation
This extension will create a Popup that will show the requested value without opening the network tab (if exist).
- Host: GitHub
- URL: https://github.com/simone-di-paolo/response-headers-values-checker
- Owner: simone-di-paolo
- License: mit
- Created: 2023-02-10T15:24:58.000Z (over 3 years ago)
- Default Branch: develop
- Last Pushed: 2023-02-19T22:22:50.000Z (over 3 years ago)
- Last Synced: 2025-03-17T19:41:03.391Z (over 1 year ago)
- Topics: chrome, chrome-extension, extension, headers, manifest-v3, response
- Language: JavaScript
- Homepage:
- Size: 142 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Response Headers Values Checker
## What is this?
This is a Chrome Extension. It's a very simple one: the extension will read the response of the current page and will show,
inside the extension popup, the value you will search for into the input (if exist).
For example: if you write "date" inside the input, inside the "Result" section you will see the value of "date"
readed from the header response.
All the values you will insert must be separated by comma (spaces are admitted, the words splitted by comma will be "trimmed" too).
For example:
date, cache-control, dispatcher
In order to make the extension works correctly, refresh the page before trying to read the values.
N.B.: if you have a page that autorefresh somewhere, the value retrieved will be updated with the latest page refreshed.
## Screenshot

## Chrome Web Store Link
The extension is available on the Chrome Web Store at this link.
## UPDATES
16-02-2023
Changelog of the version v0.2.1
Features:
- Added a start/stop button and created a logic for it
- Added a logic that will refresh the page after the click on start/stop button
- Added a countdown timer that shows seconds remains before updating the values in popup (after the start/stop button click)
Bugfix:
- Now the scripts won't be executed into chrome://extensions* tabs.
- General bugfixing