Skip to content

Commit 0f82514

Browse files
authored
Bug Fix v1.14
1 parent f6f12ca commit 0f82514

File tree

2 files changed

+2
-9
lines changed

2 files changed

+2
-9
lines changed

Firefox (Manifest v2)/background.js

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,7 @@ chrome.browserAction.onClicked.addListener(function (tab) {
44
const link = formattedInput ? `https://www.virustotal.com/gui/search/${formattedInput}` : null;
55

66
if (link) {
7-
// Show confirmation dialog
8-
const userConfirmed = window.confirm("By approving this action, the extension will check the current website you are in right now on VirusTotal, which will require the extension to forward the request on VirusTotal's website. Do you want to proceed?");
9-
10-
if (userConfirmed) {
11-
openInNewTab(link);
12-
} else {
13-
console.log("Action canceled by the user.");
14-
}
7+
openInNewTab(link);
158
}
169
});
1710

Firefox (Manifest v2)/manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"manifest_version": 2,
33
"name": "VirusTotal Website Security Check",
4-
"version": "1.13",
4+
"version": "1.14",
55
"description": "It opens a VirusTotal website scan page on the URL you are visiting right now, in just a click of a button, of course with your consent.",
66
"icons": {
77
"16": "favicon-16x16.png",

0 commit comments

Comments
 (0)