Usando o AppleScript, preciso verificar se o Adblock Plus (ABP) está instalado no navegador Chrome.
Depois de várias tentativas de descobrir como, cheguei à conclusão de que seria relativamente fácil verificar se o ABP "firstRun.html" existe.
Ou há um script mais confiável para verificar se esta extensão específica está instalada?
Aqui está o meu script, no entanto sempre retorna verdade . Por favor ajude.
if checkIfABPInstalled() is true then
log "FOUND"
else
log "NOT FOUND"
end if
on checkIfABPInstalled()
try
tell application "Google Chrome"
if ("chrome-extension://cfhdojbkjhnklbpkdaibdccddilifddb/firstRun.html") exists then
return true
else
return false
end if
end tell
on error
return false
end try
end checkIfABPInstalled
fonte