Skip to content

Commit

Permalink
Update Pro5Chrome.py
Browse files Browse the repository at this point in the history
  • Loading branch information
hieuck committed Jul 2, 2024
1 parent 5cde09f commit d607131
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions Pro5Chrome.py
Original file line number Diff line number Diff line change
Expand Up @@ -158,6 +158,18 @@ def update_urls_listbox():
for url in urls:
urls_listbox.insert(tk.END, url)

# Hàm để mở toàn bộ Chrome với các profile
def open_all_chrome_profiles():
chrome_path = chrome_var.get() or read_chrome_path() or default_chrome_path

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([chrome_path, profile_directory])

# Hàm để xử lý khi nhấn Enter trên Combobox để mở Chrome
def open_chrome_on_enter(event=None):
if event and event.keysym == 'Return':
Expand Down Expand Up @@ -276,6 +288,10 @@ def save_chrome_paths_to_config():
login_button_listbox = ttk.Button(listbox_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(listbox_frame, text="Mở Toàn Bộ Chrome", command=open_all_chrome_profiles)
open_all_chrome_button.pack(side=tk.LEFT, padx=5)

# Xử lý sự kiện nhấp đúp vào một profile trong Listbox
profiles_listbox.bind('<Double-Button-1>', open_profile_from_listbox)

Expand Down

0 comments on commit d607131

Please sign in to comment.