Skip to content

Commit 3352a69

Browse files
authored
#211 #212 #213 bug fixed
#211 #212 #213 bug fixed
1 parent 6929c34 commit 3352a69

File tree

4 files changed

+1782
-429
lines changed

4 files changed

+1782
-429
lines changed

Chrome-Extension/WhatsApp Monitor/manifest.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"manifest_version": 3,
33
"name": "Online Monitor for WhatsApp",
44
"description": "Online Monitor WhatsApp Web",
5-
"version": "3.1",
5+
"version": "3.2",
66
"author": "Rizwan Ahmad",
77

88

Chrome-Extension/WhatsApp Monitor/online.js

+24
Original file line numberDiff line numberDiff line change
@@ -164,6 +164,8 @@ function dcsv2() {
164164
csv.push(row.join(';'));
165165
}
166166
var csv_string = csv.join('\n');
167+
168+
167169
var filename = `whatsapp-monitor_${new Date().toISOString().split('T')[0]}&&${new Date().toLocaleTimeString()}.csv`;
168170
var link = document.createElement('a');
169171
link.style.display = 'none';
@@ -173,12 +175,34 @@ function dcsv2() {
173175
document.body.appendChild(link);
174176
link.click();
175177
document.body.removeChild(link);
178+
179+
180+
181+
/*
182+
183+
console.log(csv,csv_string);
184+
// Save the CSV file.
185+
var blob = new Blob([csv], {type: 'text/csv'});
186+
var url = window.URL.createObjectURL(blob);
187+
var link = document.createElement('a');
188+
console.log(link,url);
189+
link.href = url;
190+
link.download = 'table.csv';
191+
document.body.appendChild(link);
192+
link.click();
193+
document.body.removeChild(link);
194+
195+
*/
196+
197+
176198
}
177199

178200

179201

180202

181203

204+
205+
182206
chrome.storage.local.get('save_interval', function (result4) {
183207
save_interval = parseInt(result4.save_interval);
184208
if(save_interval>=1)

Chrome-Extension/WhatsApp Monitor/popup.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,7 @@ <h2>
233233
<center>
234234

235235
<br><br>
236-
<h3 align="center">Chrome Version 3.1 (1 September 2023)</h3>
236+
<h3 align="center">Chrome Version 3.2 (1 May 2024)</h3>
237237

238238

239239

0 commit comments

Comments
 (0)