CertiMonitor Pro swiftly provides the remaining days until a website's certificate expires. It exhibits the countdown on a padlock icon, turning red when there are less than 29 days left. An unlocked red padlock denotes an unencrypted connection.
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": "{07e0cddd-28a6-4940-b1ba-11a82e0ace58}"
}
}
}