Inspect and view changes in HTTP/? source codes across current and past versions
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"manifest_version": 3,
"name": "HTTP Version Indicator",
"version": "1.1.1",
"description": "Indicate the HTTP version for the current page.",
"icons": {
"128": "icons/default.png"
},
"browser_specific_settings": {
"gecko": {
"id": "{a80bfac2-d81a-47a3-89ca-ea9ad213d35b}"
}
},
"background": {
"scripts": [
"background.js"
]
},
"content_scripts": [
{
"matches": [
"*://*/*"
],
"js": [
"content-script.js"
],
"run_at": "document_end"
}
],
"page_action": {
"default_icon": "icons/default.png",
"default_title": "HTTP Version Unknown",
"show_matches": [
"http://*/*",
"https://*/*"
],
"hide_matches": [
"https://addons.mozilla.org/*",
"https://accounts.firefox.com/*"
]
}
}