Utilizzando AppleScript, devo verificare se Adblock Plus (ABP) è installato nel browser Chrome.
Dopo numerosi tentativi di cercare di capire come, sono giunto alla conclusione che sarebbe relativamente facile verificare se l'ABP "firstRun.html" esiste.
O esiste uno script più affidabile per verificare se questa estensione specifica è installata?
Ecco il mio script, tuttavia restituisce sempre true . Per favore aiuto.
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