-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnew2.1.py
1317 lines (1081 loc) · 54.3 KB
/
new2.1.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
import tkinter as tk
from tkinter import ttk, Menu
from selenium import webdriver
from selenium.webdriver.common.by import By
from selenium.webdriver.common.keys import Keys
from selenium.webdriver.chrome.service import Service as ChromeService
from selenium.webdriver.chrome.options import Options as ChromeOptions
from webdriver_manager.chrome import ChromeDriverManager
from selenium.webdriver.support.ui import WebDriverWait
from selenium.webdriver.support import expected_conditions as EC
import subprocess
import json
import os
import time
import pygetwindow as gw
import pywinauto
import psutil
import webbrowser
import screeninfo
# -----------------------------------------------------------------
# --------------------Copyright (c) 2024 hieuck--------------------
# -----------------------------------------------------------------
# Tạo cửa sổ chính
root = tk.Tk()
root.title("Profiles Google Chrome")
# Đường dẫn tệp profiles.json, config.json và URL.json trong cùng thư mục với file .py
PROFILE_FILE = os.path.join(os.path.dirname(os.path.abspath(__file__)), 'profiles.json')
CONFIG_FILE = os.path.join(os.path.dirname(os.path.abspath(__file__)), 'config.json')
URL_FILE = os.path.join(os.path.dirname(os.path.abspath(__file__)), 'URL.json')
# Khởi tạo các biến toàn cục
profile_window_map = {}
current_window_index = 0
# --------------------------------------------------------------
# Start Nút để mở các tệp profiles.json, config.json và URL.json
# --------------------------------------------------------------
def open_profiles_file():
subprocess.Popen(['notepad.exe', PROFILE_FILE])
def open_config_file():
subprocess.Popen(['notepad.exe', CONFIG_FILE])
def open_url_file():
subprocess.Popen(['notepad.exe', URL_FILE])
# Tạo frame mới để chứa các nút "Mở config.json", "Mở profiles.json" và "Mở URL.json"
open_buttons_frame = ttk.Frame(root, borderwidth=2, relief="groove")
open_buttons_frame.pack(fill=tk.BOTH, expand=True, padx=10, pady=10)
# Frame chứa các nút để căn giữa các nút trong open_buttons_frame
center_buttons_frame = ttk.Frame(open_buttons_frame)
center_buttons_frame.pack(anchor="center")
# Nút để mở config.json
open_config_button = ttk.Button(center_buttons_frame, text="Mở config.json", command=open_config_file)
open_config_button.pack(side=tk.LEFT, fill=tk.BOTH, padx=5, pady=5)
# Nút để mở profiles.json
open_profiles_button = ttk.Button(center_buttons_frame, text="Mở profiles.json", command=open_profiles_file)
open_profiles_button.pack(side=tk.LEFT, fill=tk.BOTH, padx=5, pady=5)
# Nút để mở URL.json
open_url_button = ttk.Button(center_buttons_frame, text="Mở URL.json", command=open_url_file)
open_url_button.pack(side=tk.LEFT, fill=tk.BOTH, padx=5, pady=5)
# ------------------------------------------------------------
# End Nút để mở các tệp profiles.json, config.json và URL.json
# ------------------------------------------------------------
# --------------------------
# Start Chrome configuration
# --------------------------
# Đường dẫn Chrome mặc định nếu không có trong config
default_chrome_path = 'C:/Program Files/Google/Chrome/Application/chrome.exe'
# Cấu hình mặc định
DEFAULT_CONFIG = {
"always_on_top": False,
"chrome_paths": ["C:/Program Files/Google/Chrome/Application/chrome.exe"],
"chrome_path": "C:/Program Files/Google/Chrome/Application/chrome.exe"
}
# Hàm chuẩn hóa đường dẫn
def normalize_paths(config):
if 'chrome_paths' in config:
config['chrome_paths'] = [path.replace("\\", "/") for path in config['chrome_paths']]
return config
# Hàm để đọc cấu hình từ tệp config.json
def read_config():
global is_always_on_top, chrome_paths, default_chrome_path
try:
if os.path.exists(CONFIG_FILE):
with open(CONFIG_FILE, 'r') as file:
config = json.load(file)
config = normalize_paths(config)
is_always_on_top = config.get('always_on_top', False)
chrome_paths = config.get('chrome_paths', [default_chrome_path])
# default_chrome_path = chrome_paths[0] if chrome_paths else default_chrome_path
chrome_path = config.get('chrome_path', default_chrome_path)
# In thông báo về các giá trị cấu hình đã đọc
print(f"is_always_on_top: {is_always_on_top}")
print(f"use_chrome_path: {chrome_path}")
else:
print(f"Tệp {CONFIG_FILE} không tồn tại. Sẽ sử dụng cấu hình mặc định.")
is_always_on_top = False
chrome_paths = [default_chrome_path]
except FileNotFoundError:
print(f"Tệp {CONFIG_FILE} không tồn tại. Sẽ sử dụng cấu hình mặc định.")
is_always_on_top = False
chrome_paths = [default_chrome_path]
except json.JSONDecodeError as e:
print(f"Lỗi giải mã JSON trong tệp {CONFIG_FILE}: {e}. Sẽ sử dụng cấu hình mặc định.")
is_always_on_top = False
chrome_paths = [default_chrome_path]
except Exception as e:
print(f"Lỗi khi đọc tệp {CONFIG_FILE}: {e}. Sẽ sử dụng cấu hình mặc định.")
is_always_on_top = False
chrome_paths = [default_chrome_path]
# Hàm để lưu cấu hình
def save_config():
global is_always_on_top, chrome_paths, default_chrome_path
config = {
'always_on_top': is_always_on_top,
'chrome_paths': chrome_paths
}
try:
config = normalize_paths(config)
with open(CONFIG_FILE, 'w') as file:
json.dump(config, file, indent=4)
except Exception as e:
print(f"Lỗi khi lưu cấu hình: {e}")
# Hàm xử lý lỗi JSON
def handle_json_error():
print("Xử lý lỗi JSON...")
try:
os.remove(CONFIG_FILE) # Xóa tệp config.json khi gặp lỗi JSON
print(f"Đã xóa {CONFIG_FILE} do lỗi JSON.")
# Tạo lại tệp config.json với dữ liệu mặc định
default_config = {
'always_on_top': is_always_on_top,
'chrome_paths': [default_chrome_path]
}
with open(CONFIG_FILE, 'w') as file:
json.dump(default_config, file, indent=4)
print(f"Đã tạo lại tệp {CONFIG_FILE} với dữ liệu mặc định.")
# Trả về cấu hình mặc định
return default_config
except Exception as e:
print(f"Lỗi khi xử lý lỗi JSON: {e}")
return None
# Hàm để cập nhật trạng thái always on top
def toggle_always_on_top():
global is_always_on_top
is_always_on_top = not is_always_on_top
root.attributes('-topmost', is_always_on_top)
print(f"Ứng dụng luôn hiển thị trên cùng: {is_always_on_top}")
save_config() # Lưu trạng thái vào config.json
always_on_top_var.set(is_always_on_top) # Đồng bộ hóa checkbox với giá trị mới của is_always_on_top
# Hàm xử lý sự kiện khi checkbox thay đổi trạng thái
def on_checkbox_change():
toggle_always_on_top() # Đảm bảo rằng trạng thái always on top được cập nhật
save_config() # Lưu trạng thái vào config.json khi checkbox thay đổi
always_on_top_var.set(is_always_on_top) # Đồng bộ hóa checkbox với giá trị mới của is_always_on_top
# Biến để lưu trạng thái của checkbox
is_always_on_top = False
# Gọi hàm để đọc cấu hình khi khởi động ứng dụng
read_config()
# Tạo checkbox để điều khiển tính năng luôn hiển thị trên cùng
always_on_top_var = tk.BooleanVar()
always_on_top_var.set(is_always_on_top) # Giá trị mặc định, có thể bị ghi đè sau khi đọc từ config.json
always_on_top_checkbox = ttk.Checkbutton(center_buttons_frame, text="Luôn hiển thị trên cùng", variable=always_on_top_var, command=toggle_always_on_top)
always_on_top_checkbox.pack(side=tk.LEFT, fill=tk.BOTH, padx=5, pady=10)
# Biến toàn cục để lưu trạng thái checkbox
hide_taskbar_var = tk.BooleanVar()
# Thêm checkbox để xác nhận ẩn thanh tác vụ
hide_taskbar_checkbox = ttk.Checkbutton(center_buttons_frame, text="Ẩn thanh tác vụ", variable=hide_taskbar_var)
hide_taskbar_checkbox.pack(side=tk.LEFT, fill=tk.BOTH, padx=5, pady=10)
# Hàm để đọc đường dẫn Chrome từ config
def read_chrome_path():
if os.path.exists(CONFIG_FILE):
try:
with open(CONFIG_FILE, 'r') as file:
config = json.load(file)
return config.get('chrome_path', '') # Trả về đường dẫn Chrome từ config nếu có
except json.JSONDecodeError as e:
print(f"Lỗi khi đọc file cấu hình: {e}")
return ''
except Exception as e:
print(f"Lỗi không xác định khi đọc file cấu hình: {e}")
return ''
else:
return ''
# Đọc danh sách đường dẫn Chrome từ config
def read_chrome_paths():
if os.path.exists(CONFIG_FILE):
try:
with open(CONFIG_FILE, 'r') as file:
config = json.load(file)
return config.get('chrome_paths', [default_chrome_path])
except json.JSONDecodeError as e:
print(f"Lỗi khi đọc file cấu hình: {e}")
return [default_chrome_path]
except Exception as e:
print(f"Lỗi không xác định khi đọc file cấu hình: {e}")
return [default_chrome_path]
else:
return [default_chrome_path]
chrome_paths = read_chrome_paths()
# Hàm để lưu đường dẫn Chrome vào config
def save_chrome_path(chrome_path):
# Đọc cấu hình hiện tại từ file
config = {}
try:
if os.path.exists(CONFIG_FILE):
with open(CONFIG_FILE, 'r') as file:
config = json.load(file)
# Kiểm tra nếu đường dẫn Chrome mới khác với đường dẫn hiện tại thì mới lưu lại
if chrome_path != config.get('chrome_path'):
if 'chrome.exe' not in chrome_path.lower():
chrome_path = os.path.join(chrome_path, 'chrome.exe')
config['chrome_path'] = chrome_path
with open(CONFIG_FILE, 'w') as file:
json.dump(config, file, indent=4)
except json.JSONDecodeError as e:
print(f"Lỗi khi đọc hoặc ghi file cấu hình: {e}")
except PermissionError as e:
print(f"Không có quyền truy cập để ghi vào {CONFIG_FILE}: {e}")
except Exception as e:
print(f"Lỗi khi lưu đường dẫn Chrome: {e}")
# Hàm để mở thư mục User Data
def open_user_data_folder():
use_chrome_path = chrome_var.get() or read_chrome_path()
print(f"Đường dẫn Chrome đã sử dụng: {use_chrome_path}")
if 'google' in use_chrome_path.lower():
user_data_path = os.path.join(os.getenv('LOCALAPPDATA'), 'Google', 'Chrome', 'User Data')
elif 'centbrowser' in use_chrome_path.lower():
if 'chrome' in use_chrome_path.lower():
chrome_folder_path = os.path.dirname(use_chrome_path)
user_data_path = os.path.join(chrome_folder_path, 'User Data') # Đường dẫn đến thư mục User Data của Cent Browser
print(f"Cent Browser User Data path: {user_data_path}")
if not os.path.exists(user_data_path):
print(f"Thư mục User Data không tồn tại: {user_data_path}")
return
else:
print("Không thể mở thư mục User Data cho đường dẫn này.")
return
user_data_path = os.path.abspath(user_data_path)
subprocess.Popen(['explorer', user_data_path])
# Hàm để xóa đường dẫn Chrome đã chọn
def delete_selected_chrome_path():
selected_path = chrome_var.get()
if selected_path in chrome_paths:
chrome_paths.remove(selected_path)
save_config()
chrome_dropdown['values'] = chrome_paths
chrome_var.set(chrome_paths[0] if chrome_paths else default_chrome_path)
# Tạo frame chứa Combobox và Entry cho đường dẫn Chrome
chrome_frame = ttk.Frame(root, borderwidth=2, relief="groove")
chrome_frame.pack(fill=tk.BOTH, expand=True, padx=10, pady=10)
# Label và Combobox cho đường dẫn Chrome
chrome_path_label = ttk.Label(chrome_frame, text="Chọn hoặc Nhập đường dẫn Chrome:")
chrome_path_label.pack(side=tk.LEFT, padx=5)
chrome_var = tk.StringVar()
chrome_var.set(read_chrome_path())
chrome_dropdown = ttk.Combobox(chrome_frame, textvariable=chrome_var)
chrome_dropdown['values'] = chrome_paths
chrome_dropdown.pack(side=tk.LEFT, padx=5)
# Thêm nút để mở thư mục User Data
open_user_data_button = ttk.Button(chrome_frame, text="Mở User Data", command=open_user_data_folder)
open_user_data_button.pack(side=tk.LEFT, padx=5)
# Tạo nút để xóa đường dẫn Chrome đã chọn
delete_chrome_path_button = ttk.Button(chrome_frame, text="Xóa đường dẫn đã chọn", command=delete_selected_chrome_path)
delete_chrome_path_button.pack(side=tk.LEFT, padx=5)
# Gọi hàm để cập nhật giao diện khi khởi động
always_on_top_var.set(is_always_on_top) # Đồng bộ hóa always_on_top_var với giá trị từ config.json
root.attributes('-topmost', is_always_on_top) # Đảm bảo rằng trạng thái always on top được thiết lập chính xác khi khởi động
# ------------------------
# End Chrome configuration
# ------------------------
# ----------------------------------
# Start Chrome profiles configuration
# ----------------------------------
def update_profile_listbox():
global open_profile_listbox, close_profile_listbox, profile_window_map
main_window_title = root.title() # Lấy tiêu đề của cửa sổ chính của chương trình
# Tìm tất cả các cửa sổ Chrome hoặc CentBrowser
chrome_windows = gw.getWindowsWithTitle("Google Chrome") + gw.getWindowsWithTitle("Cent Browser")
# Loại bỏ cửa sổ chính của chương trình khỏi danh sách
chrome_windows = [win for win in chrome_windows if win.title != main_window_title]
# Xóa danh sách cũ
open_profile_listbox.delete(0, tk.END)
close_profile_listbox.delete(0, tk.END)
profile_window_map = {}
# Thêm các cửa sổ Chrome vào ListBox tương ứng
for win in chrome_windows:
profile_window_map[win.title] = win
if win.isActive:
open_profile_listbox.insert(tk.END, win.title)
close_profile_listbox.insert(tk.END, win.title)
profile_window_map[win.title] = win
# Lập lịch cập nhật lại sau 5 giây
root.after(5000, update_profile_listbox)
def update_listbox_decorator(func):
def wrapper(*args, **kwargs):
result = func(*args, **kwargs)
update_profile_listbox()
return result
return wrapper
# Hàm để đọc danh sách profiles từ tệp
def read_profiles():
if os.path.exists(PROFILE_FILE):
with open(PROFILE_FILE, 'r') as file:
return json.load(file)
else:
return []
# Đọc danh sách profiles từ tệp
profiles = read_profiles()
# Hàm để lưu danh sách profiles vào tệp
def save_profiles(profiles):
with open(PROFILE_FILE, 'w') as file:
json.dump(profiles, file, indent=4)
# Hàm để mở Chrome và thêm profile nếu chưa tồn tại, sau đó mở Chrome
@update_listbox_decorator
def open_chrome_and_add_profile():
selected_profile = profile_var.get()
if selected_profile:
if selected_profile not in profiles:
profiles.append(selected_profile)
profiles.sort() # Sắp xếp theo thứ tự ABC
save_profiles(profiles)
profile_dropdown.set_completion_list(profiles) # Cập nhật danh sách cho AutocompleteCombobox
update_listbox()
# Lưu đường dẫn Chrome vào danh sách vào config
new_chrome_path = chrome_var.get()
if new_chrome_path and new_chrome_path not in chrome_paths:
chrome_paths.append(new_chrome_path)
chrome_paths.sort() # Sắp xếp theo thứ tự ABC
save_config()
chrome_dropdown['values'] = chrome_paths
open_chrome(selected_profile)
else:
print("Vui lòng chọn hoặc nhập một profile")
# Hàm để mở Chrome với profile được chọn
@update_listbox_decorator
def open_chrome(profile):
use_chrome_path = chrome_var.get() or read_chrome_path() or default_chrome_path # Lấy đường dẫn Chrome từ Combobox, nếu không có thì dùng đường dẫn mặc định
if 'chrome.exe' not in use_chrome_path.lower():
use_chrome_path = os.path.join(use_chrome_path, 'chrome.exe')
profile_directory = f"--profile-directory=Profile {profile}"
subprocess.Popen([use_chrome_path, profile_directory])
# Hàm để mở trang đăng nhập Google trong Chrome
@update_listbox_decorator
def login_google(profile):
use_chrome_path = chrome_var.get() or read_chrome_path() or default_chrome_path # Lấy đường dẫn Chrome từ Combobox, nếu không có thì dùng đường dẫn mặc định
if 'chrome.exe' not in use_chrome_path.lower():
use_chrome_path = os.path.join(use_chrome_path, 'chrome.exe')
login_url = 'https://accounts.google.com/'
profile_directory = f"--profile-directory=Profile {profile}"
subprocess.Popen([use_chrome_path, profile_directory, login_url])
# Hàm để đăng nhập Google với profile từ Combobox
@update_listbox_decorator
def login_google_from_combobox(event=None):
selected_profile = profile_var.get()
if selected_profile:
login_google(selected_profile)
else:
print("Vui lòng chọn một profile từ Combobox")
# Hàm để đóng tất cả các tiến trình Chrome
@update_listbox_decorator
def close_chrome():
try:
if os.name == 'nt': # Windows
os.system("taskkill /im chrome.exe /f")
else: # Unix-based
os.system("pkill chrome")
except Exception as e:
print(f"Đã xảy ra lỗi khi đóng Chrome: {e}")
# Hàm để xử lý khi nhấn Enter trên Combobox để mở Chrome
@update_listbox_decorator
def open_chrome_on_enter(event=None):
if event and event.keysym == 'Return':
open_chrome_and_add_profile()
class AutocompleteCombobox(ttk.Combobox):
def set_completion_list(self, completion_list):
self._completion_list = sorted(completion_list)
self._hits = []
self._hit_index = 0
self.position = 0
self.bind('<KeyRelease>', self.handle_keyrelease)
self.bind('<Delete>', self.handle_delete)
self['values'] = self._completion_list
def autocomplete(self, delta=0):
if delta:
self.delete(self.position, tk.END)
else:
self.position = len(self.get())
_hits = [item for item in self._completion_list if item.lower().startswith(self.get().lower())]
if _hits != self._hits:
self._hit_index = 0
self._hits = _hits
if _hits:
self._hit_index = (self._hit_index + delta) % len(_hits)
self.delete(0, tk.END)
self.insert(0, _hits[self._hit_index])
self.select_range(self.position, tk.END)
def handle_keyrelease(self, event):
if event.keysym in ('BackSpace', 'Left', 'Right', 'Up', 'Down'):
return
if event.keysym == 'Delete':
self.handle_delete(event)
else:
self.autocomplete()
def handle_delete(self, event=None):
self.delete(0, tk.END) # Xóa tất cả văn bản trong trường nhập
return 'break'
# Tạo frame chứa Combobox và Entry cho Profile Chrome
configs_frame = ttk.Frame(root, borderwidth=2, relief="groove")
configs_frame.pack(fill=tk.BOTH, expand=True, padx=10, pady=10)
# Label cho Combobox và Listbox
profile_label = ttk.Label(configs_frame, text="Chọn hoặc Nhập Profile:")
profile_label.pack(side=tk.LEFT, padx=5)
# Combobox để chọn hoặc nhập profile
profile_var = tk.StringVar()
profile_dropdown = AutocompleteCombobox(configs_frame, textvariable=profile_var)
profile_dropdown.set_completion_list(profiles)
profile_dropdown.pack(side=tk.LEFT, padx=5)
# Nút Mở Chrome và thêm đường dẫn nếu cần
open_button = ttk.Button(configs_frame, text="Mở Chrome", command=open_chrome_and_add_profile)
open_button.pack(side=tk.LEFT, padx=5)
# Gắn sự kiện Enter cho Combobox
def handle_enter(event):
open_chrome_on_enter(event)
update_profile_listbox()
profile_dropdown.bind('<Return>', handle_enter)
# Nút Đăng Nhập Google cho Combobox
login_button_combobox = ttk.Button(configs_frame, text="Đăng Nhập Google", command=login_google_from_combobox)
login_button_combobox.pack(side=tk.LEFT, padx=5)
# Nút Đóng Chrome
close_button = ttk.Button(configs_frame, text="Đóng Chrome", command=close_chrome)
close_button.pack(side=tk.LEFT, padx=5)
# -----------------
# Profile Listboxes
# -----------------
# Hàm để mở profile từ Listbox
@update_listbox_decorator
def open_profile_from_listbox(event=None):
index = profiles_listbox.curselection()
if index:
selected_profile = profiles_listbox.get(index)
open_chrome(selected_profile)
else:
print("Vui lòng chọn một profile từ danh sách")
# Hàm để đăng nhập Google với profile từ Listbox
@update_listbox_decorator
def login_google_from_listbox(event=None):
index = profiles_listbox.curselection()
if index:
selected_profile = profiles_listbox.get(index)
login_google(selected_profile)
else:
print("Vui lòng chọn một profile từ danh sách")
# Hàm để cập nhật Listbox theo thứ tự ABC
def update_listbox():
profiles_listbox.delete(0, tk.END)
for profile in sorted(profiles):
profiles_listbox.insert(tk.END, profile)
# Frame chứa các nút và Listbox
profiles_frame = ttk.Frame(root, borderwidth=2, relief="groove")
profiles_frame.pack(fill=tk.BOTH, expand=True, padx=10, pady=10)
# Frame chứa Listbox
show_listbox_frame = ttk.Frame(profiles_frame, borderwidth=2, relief="groove")
show_listbox_frame.pack(side=tk.LEFT, fill=tk.BOTH, expand=True, padx=10, pady=10)
# Label cho danh sách profiles
profiles_label = ttk.Label(show_listbox_frame, text="Danh sách Profiles:", font=("Helvetica", 12, "bold"))
profiles_label.pack(side=tk.TOP, padx=5, pady=5)
# Listbox để hiển thị danh sách profiles
profiles_listbox = tk.Listbox(show_listbox_frame, selectmode=tk.SINGLE, height=5, font=("Helvetica", 10))
profiles_listbox.pack(fill=tk.BOTH, expand=True, padx=5, pady=5)
# Hàm để chọn profile khi click chuột trái vào Listbox
def on_left_click(event):
# Xác định vị trí của con trỏ chuột
listbox_index = profiles_listbox.nearest(event.y)
# Đưa profile Combo box
profile_var.set(profiles_listbox.get(listbox_index))
# Thêm sự kiện chuột trái vào Listbox
profiles_listbox.bind('<Button-1>', on_left_click)
# Xử lý sự kiện nhấp đúp vào một profile trong Listbox
def handle_double_click(event):
open_profile_from_listbox(event)
update_profile_listbox()
profiles_listbox.bind('<Double-Button-1>', handle_double_click)
# --------------------------------
# End Chrome profile configuration
# --------------------------------
# -----------------
# Start Right Click
# -----------------
import pyperclip # Thư viện để thao tác với clipboard
# Hàm để xử lý sự kiện chuột phải vào Listbox
def on_right_click(event):
# Xác định vị trí của con trỏ chuột
listbox_index = profiles_listbox.nearest(event.y)
# Chọn profile tương ứng với mục được click chuột phải
profiles_listbox.selection_clear(0, tk.END)
profiles_listbox.selection_set(listbox_index)
profiles_listbox.activate(listbox_index)
# Hiển thị menu ngữ cảnh tại vị trí con trỏ chuột
context_menu.post(event.x_root, event.y_root)
# Hàm để sao chép tên profile được chọn vào clipboard
def copy_selected_profile():
selected_index = profiles_listbox.curselection()
if selected_index:
selected_profile = profiles_listbox.get(selected_index)
pyperclip.copy(selected_profile)
# Hàm để xóa profile được chọn trong Listbox và cập nhật giao diện
def delete_selected_profile():
selected_index = profiles_listbox.curselection()
if selected_index:
selected_profile = profiles_listbox.get(selected_index)
profiles_listbox.delete(selected_index)
profiles.remove(selected_profile)
save_profiles(profiles)
else:
print("Vui lòng chọn một profile từ danh sách")
# Tạo menu ngữ cảnh
context_menu = Menu(root, tearoff=0)
context_menu.add_command(label="Copy tên profile", command=lambda: copy_selected_profile())
context_menu.add_command(label="Xóa profile", command=delete_selected_profile)
# Gán sự kiện chuột phải vào Listbox
profiles_listbox.bind("<Button-3>", on_right_click)
# ---------------
# End Right Click
# ---------------
# ---------------------------
# Start Hàm tương tác profile
# ---------------------------
# Define function to arrange windows evenly on the screen
def arrange_chrome_windows():
main_window_title = root.title() # Đảm bảo biến main_window_title đã được định nghĩa
# Lấy kích thước màn hình
screen = screeninfo.get_monitors()[0] # Lấy màn hình đầu tiên
screen_width = screen.width
screen_height = screen.height
# Kiểm tra trạng thái của checkbox
if hide_taskbar_var.get():
taskbar_height = 0 # Không trừ gì nếu ẩn thanh tác vụ
else:
taskbar_height = 40 # Trừ 40 pixels nếu thanh tác vụ hiện
# Tính chiều cao hiệu dụng của màn hình
effective_height = screen_height - taskbar_height
# Tìm tất cả các cửa sổ Chrome hoặc CentBrowser
chrome_windows = gw.getWindowsWithTitle("Google Chrome") + gw.getWindowsWithTitle("Cent Browser")
if chrome_windows:
# Loại bỏ cửa sổ chính của chương trình khỏi danh sách
chrome_windows = [win for win in chrome_windows if win.title != main_window_title]
# Khôi phục tất cả các cửa sổ phóng to về chế độ bình thường
for win in chrome_windows:
if win.isMaximized:
win.restore()
# Sắp xếp các cửa sổ theo thứ tự đảo ngược của thứ tự chúng được mở
chrome_windows.sort(key=lambda x: x._hWnd, reverse=True)
# Nhập kích thước cho cửa sổ từ các ô nhập
try:
num_columns = int(columns_entry.get())
margin = int(margin_entry.get()) if margin_entry.get() else 0 # Giá trị giãn cách mặc định là 0
if num_columns < 1:
num_columns = 1 # Đảm bảo số cột không nhỏ hơn 1
except ValueError:
num_columns = 2 # Nếu không có giá trị hợp lệ, mặc định là 2
# Tính số hàng dựa trên số cột
num_rows = (len(chrome_windows) + num_columns - 1) // num_columns # Tính số hàng cần thiết
# Kiểm tra xem num_rows có bằng 0 không
if num_rows == 0:
print("Không có cửa sổ để sắp xếp.")
return # Dừng hàm nếu không có cửa sổ
# Tính kích thước mới cho cửa sổ
window_width = (screen_width - (num_columns - 1) * margin) // num_columns
window_height = (effective_height - (num_rows - 1) * margin) // num_rows # Sử dụng chiều cao có thể sử dụng
# Giới hạn số lượng cửa sổ theo số hàng và cột
max_windows = num_columns * num_rows
chrome_windows = chrome_windows[:max_windows]
# Sắp xếp và di chuyển các cửa sổ
for index, win in enumerate(chrome_windows):
row = index // num_columns
col = index % num_columns
# Tính toán vị trí của cửa sổ
x = col * (window_width + margin)
y = row * (window_height + margin)
# Di chuyển và thay đổi kích thước cửa sổ
try:
win.moveTo(x, y)
win.resizeTo(window_width, window_height)
print(f"Cửa sổ {win.title} đã được sắp xếp tại ({x}, {y}) với kích thước ({window_width}, {window_height})")
except Exception as e:
print(f"Lỗi khi di chuyển hoặc thay đổi kích thước cửa sổ {win.title}: {e}")
print("Đã sắp xếp các cửa sổ Chrome thành công.")
else:
print("Không tìm thấy cửa sổ Chrome hoặc CentBrowser nào.")
# Tạo hàm tìm kiếm và xử lý cửa sổ Chrome theo profile
def find_chrome_window_by_profile(profile):
use_chrome_path = chrome_var.get() or read_chrome_path() or default_chrome_path
if 'chrome.exe' not in use_chrome_path.lower():
use_chrome_path = os.path.join(use_chrome_path, 'chrome.exe')
profile_directory = f"--profile-directory=Profile {profile}"
for proc in psutil.process_iter(attrs=['pid', 'name', 'cmdline']):
if proc.info['name'] == 'chrome.exe' or proc.info['name'] == 'CentBrowser.exe':
try:
if any(profile_directory in arg for arg in proc.info['cmdline']):
print(f"Found process with profile: {proc.info['cmdline']}")
windows = gw.getWindowsWithTitle(proc.info['name'])
for win in windows:
if proc.pid == win._hWnd:
return win
except (psutil.NoSuchProcess, psutil.AccessDenied, psutil.ZombieProcess) as e:
print(f"Error accessing process info: {e}")
continue
return None
# Hàm để mở toàn bộ Chrome với các profile
@update_listbox_decorator
def open_all_chrome_profiles():
use_chrome_path = chrome_var.get() or read_chrome_path() or default_chrome_path
if 'chrome.exe' not in use_chrome_path.lower():
use_chrome_path = os.path.join(use_chrome_path, 'chrome.exe')
if not profiles:
print("Không có profile nào để mở.")
return
for profile in profiles:
profile_directory = f"--profile-directory=Profile {profile}"
subprocess.Popen([use_chrome_path, profile_directory])
# Hàm tìm cửa sổ Chrome theo profile
def find_chrome_window(profile_name):
main_window_title = root.title() # Lấy title của cửa sổ chính của chương trình
all_windows = gw.getAllTitles()
# Tạo danh sách cửa sổ không chứa cửa sổ chính của chương trình
filtered_windows = []
for window_title in all_windows:
if profile_name in window_title or "- Google Chrome" in window_title or "- Cent Browser" in window_title:
windows = gw.getWindowsWithTitle(window_title)
filtered_windows.extend(windows)
# Loại bỏ cửa sổ chính của chương trình khỏi danh sách
filtered_windows = [win for win in filtered_windows if win.title != main_window_title]
if filtered_windows:
# Sắp xếp các cửa sổ theo thứ tự đảo ngược của thứ tự chúng được mở
filtered_windows.sort(key=lambda x: x._hWnd, reverse=True)
return filtered_windows[0] # Trả về cửa sổ đầu tiên trong danh sách đã loại bỏ cửa sổ chính
else:
return None
@update_listbox_decorator
def maximize_selected_chrome():
index = profiles_listbox.curselection()
print(f"Current selection index: {index}") # Debug: Xem chỉ mục lựa chọn hiện tại
if index:
selected_profile = profiles_listbox.get(index[0]) # Lấy giá trị từ chỉ mục đầu tiên
print(f"Selected profile: {selected_profile}") # Debug: Xem giá trị profile được chọn
chrome_window = find_chrome_window(selected_profile)
if chrome_window:
try:
chrome_window.maximize() # Tối đa hóa cửa sổ
print(f"Đã phóng to cửa sổ cho hồ sơ '{selected_profile}'")
except Exception as e:
print(f"Lỗi khi phóng to cửa sổ: {e}")
else:
print(f"Không tìm thấy cửa sổ cho hồ sơ '{selected_profile}'")
else:
print("Vui lòng chọn một hồ sơ để phóng to.")
@update_listbox_decorator
def minimize_selected_chrome():
index = profiles_listbox.curselection()
if index:
selected_profile = profiles_listbox.get(index)
# Tìm cửa sổ Chrome hoặc CentBrowser
chrome_window = find_chrome_window(selected_profile)
if chrome_window:
chrome_window.minimize()
else:
print(f"Không tìm thấy cửa sổ cho hồ sơ '{selected_profile}'")
else:
print("Vui lòng chọn một hồ sơ để thu nhỏ.")
@update_listbox_decorator
def restore_selected_chrome():
index = profiles_listbox.curselection()
if index:
selected_profile = profiles_listbox.get(index)
# Tìm cửa sổ Chrome hoặc CentBrowser
chrome_window = find_chrome_window(selected_profile)
if chrome_window:
# Kiểm tra xem cửa sổ đang minimized hay không active
if chrome_window.isMinimized:
chrome_window.restore()
chrome_window.activate()
print(f"Đã khôi phục và kích hoạt cửa sổ cho hồ sơ '{selected_profile}'")
elif not chrome_window.isActive:
chrome_window.restore()
chrome_window.activate()
print(f"Đã khôi phục và kích hoạt cửa sổ cho hồ sơ gần nhất")
else:
print(f"Cửa sổ cho hồ sơ gần nhất đã hoạt động trước đó.")
else:
print(f"Không tìm thấy cửa sổ cho hồ sơ gần nhất")
else:
print("Vui lòng chọn một hồ sơ để khôi phục.")
# Hàm để đóng cửa sổ Chrome hoặc Cent Browser
@update_listbox_decorator
def close_chrome_window():
# Lấy title của cửa sổ chính của chương trình
main_window_title = root.title()
# Tìm tất cả các cửa sổ của Chrome và CentBrowser
chrome_windows = gw.getWindowsWithTitle("Google Chrome") + gw.getWindowsWithTitle("Cent Browser")
if chrome_windows:
# Sắp xếp các cửa sổ theo thứ tự đảo ngược của thứ tự chúng được mở
chrome_windows.sort(key=lambda x: x._hWnd, reverse=True)
# Lặp qua các cửa sổ tìm được
for win in chrome_windows:
# Đảm bảo cửa sổ không phải là cửa sổ chính của chương trình
if win.title != main_window_title:
try:
# Kích hoạt cửa sổ
win.activate()
print(f"Đã chuyển đến và kích hoạt cửa sổ: {win.title}")
# Đóng cửa sổ
win.close()
print(f"Đã đóng cửa sổ: {win.title}")
return # Kết thúc sau khi đóng thành công cửa sổ
except Exception as e:
print(f"Lỗi khi đóng cửa sổ: {e}")
# Nếu không tìm thấy cửa sổ phù hợp để đóng
print("Không tìm thấy cửa sổ phù hợp để đóng.")
else:
print("Không tìm thấy cửa sổ Chrome hoặc Cent Browser nào để đóng.")
@update_listbox_decorator
def switch_tab_chrome():
global current_window_index
main_window_title = root.title() # Đảm bảo biến main_window_title đã được định nghĩa
# Tìm tất cả các cửa sổ Chrome hoặc CentBrowser
chrome_windows = gw.getWindowsWithTitle("Google Chrome") + gw.getWindowsWithTitle("Cent Browser")
if chrome_windows:
# Loại bỏ cửa sổ chính của chương trình khỏi danh sách
chrome_windows = [win for win in chrome_windows if win.title != main_window_title]
# Sắp xếp các cửa sổ theo thứ tự đảo ngược của thứ tự chúng được mở
chrome_windows.sort(key=lambda x: x._hWnd, reverse=True)
# Kiểm tra và cập nhật chỉ số cửa sổ hiện tại để không vượt quá số lượng cửa sổ
if current_window_index >= len(chrome_windows):
current_window_index = 0
if chrome_windows:
# Lấy cửa sổ kế tiếp dựa trên chỉ số hiện tại
chrome_window = chrome_windows[current_window_index]
try:
# Kích hoạt cửa sổ mà không di chuyển chuột
chrome_window.activate()
print(f"Đã chuyển đến và kích hoạt cửa sổ: {chrome_window.title}")
# Tăng chỉ số cửa sổ hiện tại để chuyển sang cửa sổ kế tiếp trong lần nhấn nút tiếp theo
current_window_index += 1
except Exception as e:
print(f"Lỗi khi chuyển tab: {e}")
else:
print("Không tìm thấy cửa sổ Chrome hoặc CentBrowser nào sau khi loại bỏ cửa sổ chính.")
else:
print("Không tìm thấy cửa sổ Chrome hoặc CentBrowser nào.")
# Frame chứa tất cả các thành phần điều khiển
container_frame = ttk.Frame(profiles_frame, borderwidth=2, relief="solid") # Tạo frame có khung
container_frame.pack(side=tk.LEFT, padx=10, pady=10, fill=tk.BOTH, expand=True, anchor='w') # Đóng khung và giãn cách
# Tạo frame chứa các nút điều khiển
control_frame = ttk.Frame(container_frame)
control_frame.pack(side=tk.LEFT, pady=5, anchor='w')
# Tạo frame cho hàng đầu tiên
row1_control_frame = ttk.Frame(control_frame)
row1_control_frame.pack(side=tk.TOP, pady=5, anchor='w')
# Tạo frame cho hàng thứ hai
row2_control_frame = ttk.Frame(control_frame)
row2_control_frame.pack(side=tk.TOP, pady=5, anchor='w')
# Frame con để chứa các ô nhập liệu
entry_frame = ttk.Frame(row2_control_frame) # Đặt entry_frame bên trong khung mới
entry_frame.pack(side=tk.RIGHT)
# Tạo frame cho hàng thứ ba
row3_control_frame = ttk.Frame(control_frame)
row3_control_frame.pack(side=tk.TOP, pady=5, anchor='w')
# Nút Đăng Nhập Google cho Listbox
login_button_listbox = ttk.Button(row1_control_frame, text="Đăng Nhập Google (Danh sách)", command=login_google_from_listbox)
login_button_listbox.pack(side=tk.LEFT, padx=5)
# Tạo nút để mở toàn bộ Chrome với các profile
open_all_chrome_button = ttk.Button(row1_control_frame, text="Mở Toàn Bộ Chrome", command=open_all_chrome_profiles)
open_all_chrome_button.pack(side=tk.LEFT, padx=5)
# Gắn nút "Phóng to" với hàm maximize_selected_chrome
maximize_button = ttk.Button(row2_control_frame, text="Phóng to", command=maximize_selected_chrome)
maximize_button.pack(side=tk.LEFT, padx=5, anchor='w')
# Gắn nút "Chuyển Tab" với hàm switch_tab_chrome
switch_tab_button = ttk.Button(row2_control_frame, text="Chuyển Tab", command=switch_tab_chrome)
switch_tab_button.pack(side=tk.LEFT, padx=5, anchor='w')
# Gắn nút "Sắp xếp" với hàm arrange_chrome_windows
arrange_button = ttk.Button(row2_control_frame, text="Sắp xếp", command=arrange_chrome_windows)
arrange_button.pack(side=tk.LEFT, padx=5, pady=5, anchor='center')
# Nhập liệu cho "Số Cột"
columns_frame = ttk.Frame(entry_frame)
columns_frame.pack(side=tk.TOP, fill=tk.X, padx=5, pady=2)
ttk.Label(columns_frame, text="Số Cột:").pack(side=tk.LEFT, padx=5)
columns_entry = ttk.Entry(columns_frame, width=5)
columns_entry.pack(side=tk.RIGHT, padx=5)
# Đặt giá trị mặc định cho ô nhập liệu
columns_entry.insert(0, "2") # Giá trị mặc định là 2
# Nhập liệu cho "Giãn cách"
margin_frame = ttk.Frame(entry_frame)
margin_frame.pack(side=tk.TOP, fill=tk.X, padx=5, pady=2)
ttk.Label(margin_frame, text="G.Cách:").pack(side=tk.LEFT, padx=5)
margin_entry = ttk.Entry(margin_frame, width=5)
margin_entry.pack(side=tk.RIGHT, padx=5)
# Đặt giá trị mặc định cho ô nhập liệu
margin_entry.insert(0, "0") # Giá trị mặc định là 0
# Gắn nút "Thu nhỏ" với hàm minimize_selected_chrome
minimize_button = ttk.Button(row3_control_frame, text="Thu nhỏ", command=minimize_selected_chrome)
minimize_button.pack(side=tk.LEFT, padx=5, anchor='w')
# Gắn nút "Khôi Phục" với hàm restore_selected_chrome
restore_button = ttk.Button(row3_control_frame, text="Khôi Phục", command=restore_selected_chrome)
restore_button.pack(side=tk.LEFT, padx=5, anchor='w')
# Gắn nút "Đóng" với hàm close_chrome_window
close_button = ttk.Button(row3_control_frame, text="Đóng", command=close_chrome_window)
close_button.pack(side=tk.LEFT, padx=5, anchor='w')
# Frame for displaying Profile đang mở
open_profile_frame = ttk.Frame(profiles_frame, borderwidth=2, relief="groove")
open_profile_frame.pack(side=tk.TOP, fill=tk.BOTH, expand=True, padx=10, pady=10)
open_profile_label = ttk.Label(open_profile_frame, text="Profile đang mở")
open_profile_label.pack(anchor="nw")
open_profile_listbox = tk.Listbox(open_profile_frame, height=1)
open_profile_listbox.pack(fill=tk.BOTH, expand=True)
# Frame for displaying Profile chuẩn bị đóng
close_profile_frame = ttk.Frame(profiles_frame, borderwidth=2, relief="groove")
close_profile_frame.pack(side=tk.BOTTOM, fill=tk.BOTH, expand=True, padx=10, pady=10)
close_profile_label = ttk.Label(close_profile_frame, text="Profile chuẩn bị đóng")
close_profile_label.pack(anchor="nw")
close_profile_listbox = tk.Listbox(close_profile_frame, height=2)
close_profile_listbox.pack(fill=tk.BOTH, expand=True)
# -------------------------
# End tương tác với Profile
# -------------------------
# ---------