CertiWatch Plus is a Firefox extension that swiftly checks and showcases the days remaining until a website's certificate expires. It portrays the count on a padlock icon, turning red if fewer than 29 days remain, and indicates an unlocked red padlo
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": 2,
"name": "Certificate expiration",
"version": "3.0",
"description": "Shows how many days until the certificate for the website expires.",
"permissions": [
"webRequest",
"webRequestBlocking",
"<all_urls>",
"tabs"
],
"browser_action": {
"default_icon": "/icons/grey-lock.svg",
"default_title": "How many days until the certificate expires",
"default_popup": "/html/popup.html"
},
"background": {
"page": "/html/background.html"
},
"icons": {
"48": "/icons/lock.svg",
"96": "/icons/lock.svg"
},
"browser_specific_settings": {
"gecko": {
"id": "{25bbf6f4-dac8-40b0-9cf3-6ab584bbb589}"
}
}
}