Utilizando AppleScript, necesito verificar si Adblock Plus (ABP) está instalado en el navegador Chrome.
Después de numerosos intentos de intentar averiguar cómo, llegué a la conclusión de que sería relativamente fácil comprobar si existe el "firstRun.html" de ABP.
¿O hay un script más confiable para verificar si esta extensión específica está instalada?
Aquí está mi script, sin embargo, siempre devuelve verdadero . 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