ClamNFのDMGに混入しているFirefox addonがFirefox26とそれ以降で無能になっている

ダウンロードの通知系が変更されたようです。
現代社会においてフルオートメーション化は時代のトレンドではありません。スマフォ時代は1タップ時代です。ということで!?、とりあえず、ダウンロード後、手動で一発スキャンするAppleScriptを晒してお茶をにごしますね(苦笑)。(アドオンと同等の動作を所望する場合です。超普通にFinderのコンテクストメニュー経由で普通スキャンも当然有り可能です)

ドロップレット版
on open input
	repeat with tgFile in input
		tell application "/Applications/ClamNF.app" to my_dl_scan tgFile as alias with expand_and_movetotrash_zip without No_OpenPDF and No_MountDMG
	end repeat
end open
選択項目を何する版
tell application "Finder" to set SelectedFinderItems to selection
repeat with tgFile in SelectedFinderItems
	tell application "/Applications/ClamNF.app" to my_dl_scan tgFile as alias with expand_and_movetotrash_zip without No_OpenPDF and No_MountDMG
end repeat

コマンドの仕様は以下の通りです
ClamNF.app内のClamNF.sdefに有ります。AppleScriptエディタにドロップして開くと以下のように表示されます