Chrome settings/password shortcut with Autohotkey -


i'm trying shortcut autohotkey (i noob it) go chrome://settings/password/ when i'm on chrome.

the run command works url, like:

run, http://stackoverflow.com 

so tried script, it's rough me:

;myscript:  #ifwinactive, ahk_class chrome_widgetwin_1     ^q::send, ^t chrome://settings/passwords/ {enter} #ifwinactive 

there ways better?

try step step:

;myscript:  #ifwinactive, ahk_class chrome_widgetwin_1      ^q::     send, ^t     sleep 500     ; replace "title" exact title of new window (tab)     ; winwait, title     ; ifwinnotactive, title, ,winactivate, title     ; winwaitactive, title    sendinput, chrome://settings/  ; sendinput faster in sending text     sleep 500     send, {enter}     sleep 500     ; replace "title" exact title of new window (tab)     ; winwait, title     ; ifwinnotactive, title, ,winactivate, title     ; winwaitactive, title     send, {tab 2}     sleep 500     send, {enter}     return  #ifwinactive 

Comments

Popular posts from this blog

'hasOwnProperty' in javascript -

How to put a lock and transaction on table using spring 4 or above using jdbcTemplate and annotations like @Transactional? -

How to understand 2 main() functions after using uftrace to profile the C++ program? -