Usando AppleScript, necesito comprobar si Adblock Plus (ABP) está instalado en el navegador Chrome.
Tras numerosos intentos de averiguar cómo, he llegado a la conclusión de que sería relativamente fácil comprobar si el ABP "firstRun.html" existe.
¿O hay un script más fiable para comprobar si esta extensión específica está instalada?
Aquí está mi script, sin embargo siempre devuelve true . Por favor, ayuda.
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