support brave version 1.65.133

This commit is contained in:
2024-05-24 12:19:57 +02:00
parent 14715d6bed
commit 2c8cf8692e
2 changed files with 13 additions and 1 deletions
+12
View File
@@ -0,0 +1,12 @@
# show file list on the dir
import os
file_list = os.listdir()
for file in file_list:
if file.endswith(".png"):
file_size = os.path.getsize(file)
print(file + ":{}".format(file_size))
if file_size < 300000:
os.remove(file)
+1 -1
View File
@@ -77,7 +77,7 @@ const BRAVE_SKIP_PRIVACY_PAGE = "Partagez des informations"
const BRAVE_SKIP_PRIVACY_PAGE_3 = "Partagez de informations" const BRAVE_SKIP_PRIVACY_PAGE_3 = "Partagez de informations"
const BRAVE_SKIP_PRIVACY_PAGE_2 = "Partagez des renseignements" const BRAVE_SKIP_PRIVACY_PAGE_2 = "Partagez des renseignements"
const PUSH_NOTIFICATION_1 = "Brave à vous envoyer des notifications " const PUSH_NOTIFICATION_1 = "Brave à vous envoyer des notifications"
class OCRChecker { class OCRChecker {