Skip to content

Commit

Permalink
(re-)added "Title" (hovertext)
Browse files Browse the repository at this point in the history
not sure when I broke this, but I fixed it now
  • Loading branch information
James-E-A committed Sep 6, 2020
1 parent 7baf4b1 commit 9d4dcaa
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions src/js/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -51,13 +51,15 @@ function genBrowserActionSpec(secType,certChain){
rootHost=sha256fp_host[certChain[certChain.length-1].fingerprint.sha256];
return {
Icon: {path:`images/root_icons/${rootHost}.ico`},
Title: {title: `\uD83E\uDD8A ${rootHost}`},
// BadgeText: {text: '\u2026'}; //TODO?
// BadgeBackgroundColor: {color: 'LimeGreen'};
};
break;
case secTypes.MITM:
return {
Icon: {path:`images/Twemoji_1f441.svg`},
Title: {title: "MITM TLS Proxy\n(Your IT team can see what you're doing)"},
BadgeText: {text: '\u2026'}, //TODO: ...something?
BadgeBackgroundColor: {color: 'Fuchsia'}
};
Expand All @@ -71,6 +73,7 @@ function genBrowserActionSpec(secType,certChain){
}
return {
Icon: {path:iconPath},
Title: {title: rootHost},
BadgeText: {text: '\u2026'}, //TODO: which aRoot?
BadgeBackgroundColor: {color: 'Cyan'}
};
Expand Down
2 changes: 1 addition & 1 deletion src/manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"manifest_version": 2,
"name": "cerdicator",
"version": "0.0.5",
"version": "0.0.6",

"description": "Enhanced TLS indicator with an emphasis on information about the Root Certificate Authority from which the connection's authenticity is derived.",

Expand Down

0 comments on commit 9d4dcaa

Please sign in to comment.