Acrobat Plugin

[plugins]quite imposing plus 5

2025040411401080x1080144
https://www.quite.com

| | コメント (0)

[plugins]pdfToolbox PDFの詳細なチェック 修正が出来ます

pdfToolbox
PDFの各種調査・修正を行えるツール(無料で一部使えます)
https://www.callassoftware.com/en/products/pdftoolbox

20240823060839_1402x762

文字とユニコードが紐づいていないPDFの場合
20240823061108_1158x708

一般的な正しく紐づいているPDFの場合
20240823061044_1158x708


ToUnicodeのマップを確認したい場合は
PDFの調査を実行します
20240824120323_1626x12102

|

DigitalSendインストール

【スクリプトエディタで開く】

#!/usr/bin/env osascript
----+----1----+----2----+-----3----+----4----+----5----+----6----+----7
#
#
#
#
# com.cocolog-nifty.quicktimer.icefloe
----+----1----+----2----+-----3----+----4----+----5----+----6----+----7
##自分環境がos12なので2.8にしているだけです
use AppleScript version "2.8"
use framework "Foundation"
use framework "AppKit"
use scripting additions

property refMe : a reference to current application

set appFileManager to refMe's NSFileManager's defaultManager()
set appShardWorkspace to refMe's NSWorkspace's sharedWorkspace()


###############################################
########まずは処理するアプリケーションを終了させる
###############################################

doQuitApp2UTI("com.adobe.Acrobat.Pro")
doQuitApp2UTI("com.adobe.Reader")

########################
####保存先ディレクトリ
########################
set ocidLibraryPathArray to (appFileManager's URLsForDirectory:(refMe's NSApplicationSupportDirectory) inDomains:(refMe's NSUserDomainMask))
set ocidUserPathURL to ocidLibraryPathArray's objectAtIndex:0
set ocidSaveDirPathURL to ocidUserPathURL's URLByAppendingPathComponent:"Adobe/Acrobat/DC/Plug-ins/dsPlugin.acroplugin" isDirectory:true
set ocidAttrDict to refMe's NSMutableDictionary's alloc()'s initWithCapacity:0
ocidAttrDict's setValue:511 forKey:(refMe's NSFilePosixPermissions)
set listResults to appFileManager's createDirectoryAtURL:(ocidSaveDirPathURL) withIntermediateDirectories:true attributes:(ocidAttrDict) |error|:(reference)

########################
#### ファイルダウンロード
########################
###起動時に削除される項目
set ocidTempDirPathURL to appFileManager's temporaryDirectory()
set ocidCleanupAtStartupURL to ocidTempDirPathURL's URLByAppendingPathComponent:"Cleanup At Startup"
####アクセス権777で作成
set ocidAttrDict to refMe's NSMutableDictionary's alloc()'s initWithCapacity:0
ocidAttrDict's setValue:511 forKey:(refMe's NSFilePosixPermissions)
appFileManager's createDirectoryAtURL:ocidCleanupAtStartupURL withIntermediateDirectories:true attributes:ocidAttrDict |error|:(reference)

set strZipFileURL to "https://dsw.digital-send.com/chkpage/downloads/MAC_DSPLUGIN.ZIP"
set ocidZipFilePath to (refMe's NSString's stringWithString:strZipFileURL)
set ocidZipFilePathURL to refMe's NSURL's alloc()'s initWithString:ocidZipFilePath
###ダウンロードして
set ocidZipData to refMe's NSData's dataWithContentsOfURL:ocidZipFilePathURL
###ファイルのURLを作って
set ocidSaveZipFilePathURL to ocidCleanupAtStartupURL's URLByAppendingPathComponent:"MAC_DSPLUGIN.ZIP" isDirectory:false
###ファイルに保存する
set boolResults to ocidZipData's writeToURL:ocidSaveZipFilePathURL atomically:true

if boolResults is false then
  return "ダウンロードに失敗しました"
end if
########################
#### zip解凍
########################
set strZipFilePathURL to ocidSaveZipFilePathURL's |path|() as text
set strSaveDirPathURL to ocidCleanupAtStartupURL's |path|() as text
log strZipFilePathURL
log strSaveDirPathURL
try
  set theComandText to ("/usr/bin/ditto -xk  \"" & strZipFilePathURL & "\"   \"" & strSaveDirPathURL & "\"") as text
  do shell script theComandText
end try

########################
#### ディスクを非表示でマウント
########################
set strDMGFilePathURL to (ocidCleanupAtStartupURL's URLByAppendingPathComponent:"DigitalSendAcrobatPlug-in_Ver.1.10.dmg")'s |path|() as text
log strDMGFilePathURL
try
  set theComandText to ("/usr/bin/hdiutil attach  \"" & strDMGFilePathURL & "\" -noverify -nobrowse -noautoopen") as text
  do shell script theComandText
end try

########################
#### パッケージをコピー
########################
set strPkgFilePathURL to "/Volumes/DigitalSendAcrobatPlug-in/DigitalSendAcrobatPlug-in.pkg" as text
try
  set theComandText to ("/usr/bin/ditto  \"" & strPkgFilePathURL & "\"   \"" & strSaveDirPathURL & "\"") as text
  do shell script theComandText
end try
########################
####ディスクをアンマウント
########################
set strDiskMountPath to "/Volumes/DigitalSendAcrobatPlug-in"
set ocidDiskMountPath to (refMe's NSString's stringWithString:strDiskMountPath)
set ocidDiskMountPathURL to refMe's NSURL's alloc()'s initWithString:ocidDiskMountPath
try
  ###
  set theComandText to ("/usr/sbin/diskutil eject  \"" & strDiskMountPath & "\"") as text
  do shell script theComandText
on error
  ####一旦マウントしーの
  set theComandText to ("/usr/sbin/diskutil mount \"" & strDiskMountPath & "\"") as text
  do shell script theComandText
  ###イジェクト
  set listResults to (appShardWorkspace's unmountAndEjectDeviceAtURL:ocidDiskMountPathURL |error|:(reference))
end try
########################
####パッケージを展開
########################
set strPkgPath to (strSaveDirPathURL & "/DigitalSendAcrobatPlug-in.pkg") as text
set strPkgExpandPath to (strSaveDirPathURL & "/DigitalSendAcrobatPlug-in.pkg.expand") as text
set theComandText to "/usr/sbin/pkgutil --expand  \"" & strPkgPath & "\" \"" & strPkgExpandPath & "\"" as text
do shell script theComandText

########################
####Payloadを展開
########################
set strPayloadPath to (strPkgExpandPath & "/dsplugin.pkg/Payload") as text
set strSaveDirPathURL to (ocidSaveDirPathURL's URLByDeletingLastPathComponent())'s |path|() as text

try
  set theComandText to ("/usr/bin/ditto  -xz   \"" & strPayloadPath & "\"   \"" & strSaveDirPathURL & "\"") as text
  do shell script theComandText
end try




#############################
###スクリプトメニューを有効にする
#############################
tell application id "com.apple.ScriptMenuApp"
  launch
  activate
end tell

#############################
###CFPreferencesを再起動
#############################
#####CFPreferencesを再起動
set strCommandText to "/usr/bin/killall cfprefsd" as text
do shell script strCommandText
delay 2


#############################
###Finderでフォルダを開く
#############################
appShardWorkspace's openURL:ocidSaveDirPathURL


return "処理終了"







###################################
########アプリケーションを終了させる
###################################
to doQuitApp2UTI(argUTI)
  set strUTI to argUTI as text
  set ocidResultsArray to refMe's NSRunningApplication's runningApplicationsWithBundleIdentifier:strUTI
  set numCntArray to ocidResultsArray count
  if numCntArray ≠ 0 then
    set ocidRunApp to ocidResultsArray's objectAtIndex:0
    
    ###通常終了
    set boolDone to ocidRunApp's terminate()
    ####強制終了
    set boolDone to ocidRunApp's forceTerminate()
    
    #### killallを使う場合
    set ocidExecAppURL to ocidRunApp's executableURL()
    set ocidFileName to ocidExecAppURL's lastPathComponent()
    set strFileName to ocidFileName as text
    
    set strCommandText to ("/usr/bin/killall -z " & strFileName & "") as text
    set ocidCommandText to refMe's NSString's stringWithString:strCommandText
    set ocidTermTask to refMe's NSTask's alloc()'s init()
    ocidTermTask's setLaunchPath:"/bin/zsh"
    ocidTermTask's setArguments:({"-c", ocidCommandText})
    set listDoneReturn to ocidTermTask's launchAndReturnError:(reference)
    
    
    ####killを使う場合
    set ocidPID to ocidRunApp's processIdentifier()
    set strPID to ocidPID as text
    log strPID
    set strCommandText to ("/bin/kill -9 " & strPID & "") as text
    set ocidCommandText to refMe's NSString's stringWithString:strCommandText
    set ocidTermTask to refMe's NSTask's alloc()'s init()
    ocidTermTask's setLaunchPath:"/bin/zsh"
    ocidTermTask's setArguments:({"-c", ocidCommandText})
    set listDoneReturn to ocidTermTask's launchAndReturnError:(reference)
    
    
  end if
end doQuitApp2UTI



|

TET Pluginインストール

文字化けPDFの強い味方。

必須設定
Fontreporter



オフィシャルページはこちら
https://www.pdflib.com/de/download/kostenlose-software/tet-plugin/
https://www.pdflib.com/


PDFLIBは他社に買収されたので
いつまで使えるか?は不透明。とりあえずARM版のDCでも基本動作はOK

【スクリプトエディタで開く】

#!/usr/bin/env osascript
----+----1----+----2----+-----3----+----4----+----5----+----6----+----7
#
#
#
#
# com.cocolog-nifty.quicktimer.icefloe
----+----1----+----2----+-----3----+----4----+----5----+----6----+----7
##自分環境がos12なので2.8にしているだけです
use AppleScript version "2.8"
use framework "Foundation"
use framework "AppKit"
use scripting additions

property refMe : a reference to current application

set appFileManager to refMe's NSFileManager's defaultManager()
set appShardWorkspace to refMe's NSWorkspace's sharedWorkspace()


###############################################
########まずは処理するアプリケーションを終了させる
###############################################

doQuitApp2UTI("com.adobe.Acrobat.Pro")
doQuitApp2UTI("com.adobe.Reader")

########################
####保存先ディレクトリ
########################
set ocidLibraryPathArray to (appFileManager's URLsForDirectory:(refMe's NSApplicationSupportDirectory) inDomains:(refMe's NSUserDomainMask))
set ocidUserPathURL to ocidLibraryPathArray's objectAtIndex:0
set ocidSaveDirPathURL to ocidUserPathURL's URLByAppendingPathComponent:"Adobe/Acrobat/DC/Plug-ins/PDFlib TET" isDirectory:true
set ocidAttrDict to refMe's NSMutableDictionary's alloc()'s initWithCapacity:0
ocidAttrDict's setValue:511 forKey:(refMe's NSFilePosixPermissions)
set listResults to appFileManager's createDirectoryAtURL:(ocidSaveDirPathURL) withIntermediateDirectories:true attributes:(ocidAttrDict) |error|:(reference)

########################
#### ファイルダウンロード
########################
###起動時に削除される項目
set ocidTempDirPathURL to appFileManager's temporaryDirectory()
set ocidCleanupAtStartupURL to ocidTempDirPathURL's URLByAppendingPathComponent:"Cleanup At Startup"
####アクセス権777で作成
set ocidAttrDict to refMe's NSMutableDictionary's alloc()'s initWithCapacity:0
ocidAttrDict's setValue:511 forKey:(refMe's NSFilePosixPermissions)
appFileManager's createDirectoryAtURL:ocidCleanupAtStartupURL withIntermediateDirectories:true attributes:ocidAttrDict |error|:(reference)

set strDMGFileURL to "https://www.pdflib.com/binaries/plugins/TETPlugin/PDFlib-TET-Plugin-5.4-Acrobat-DC.dmg"
set ocidDMGFilePath to (refMe's NSString's stringWithString:strDMGFileURL)
set ocidDMGFilePathURL to refMe's NSURL's alloc()'s initWithString:ocidDMGFilePath

set ocidDMGData to refMe's NSData's dataWithContentsOfURL:ocidDMGFilePathURL

set ocidSaveDMGFilePathURL to ocidCleanupAtStartupURL's URLByAppendingPathComponent:"PDFlib-TET-Plugin-5.4-Acrobat-DC.dmg" isDirectory:false
set boolResults to ocidDMGData's writeToURL:ocidSaveDMGFilePathURL atomically:true

if boolResults is false then
  return "ダウンロードに失敗しました"
end if

########################
#### ディスクを非表示でマウント
########################
set strDMGFilePathURL to ocidSaveDMGFilePathURL's |path|() as text
log strDMGFilePathURL
try
  set theComandText to ("/usr/bin/hdiutil attach  \"" & strDMGFilePathURL & "\" -noverify -nobrowse -noautoopen") as text
  do shell script theComandText
end try

########################
#### 対象ファイルをインストール
########################
set strInstallFilePathURL to "/Volumes/PDFlib-TET-Plugin-5.4-Acrobat-DC/PDFlib TET" as text
set strSaveDirPathURL to ocidSaveDirPathURL's |path|() as text
log strSaveDirPathURL
try
  set theComandText to ("/usr/bin/ditto  \"" & strInstallFilePathURL & "\"   \"" & strSaveDirPathURL & "\"") as text
  do shell script theComandText
end try

########################
####ディスクをアンマウント
########################
set strDiskMountPath to "/Volumes/PDFlib-TET-Plugin-5.4-Acrobat-DC"
set ocidDiskMountPath to (refMe's NSString's stringWithString:strDiskMountPath)
set ocidDiskMountPathURL to refMe's NSURL's alloc()'s initWithString:ocidDiskMountPath
try
  ###
  set theComandText to ("/usr/sbin/diskutil eject  \"" & strDiskMountPath & "\"") as text
  do shell script theComandText
on error
  ####一旦マウントしーの
  set theComandText to ("/usr/sbin/diskutil mount \"" & strDiskMountPath & "\"") as text
  do shell script theComandText
  ###イジェクト
  set listResults to (appShardWorkspace's unmountAndEjectDeviceAtURL:ocidDiskMountPathURL |error|:(reference))
end try


#############################
###スクリプトメニューを有効にする
#############################
tell application id "com.apple.ScriptMenuApp"
  launch
  activate
end tell

#############################
###CFPreferencesを再起動
#############################
#####CFPreferencesを再起動
set strCommandText to "/usr/bin/killall cfprefsd" as text
do shell script strCommandText
delay 2


#############################
###Finderでフォルダを開く
#############################
appShardWorkspace's openURL:ocidSaveDirPathURL


return "処理終了"







###################################
########アプリケーションを終了させる
###################################
to doQuitApp2UTI(argUTI)
  set strUTI to argUTI as text
  set ocidResultsArray to refMe's NSRunningApplication's runningApplicationsWithBundleIdentifier:strUTI
  set numCntArray to ocidResultsArray count
  if numCntArray ≠ 0 then
    set ocidRunApp to ocidResultsArray's objectAtIndex:0
    
    ###通常終了
    set boolDone to ocidRunApp's terminate()
    ####強制終了
    set boolDone to ocidRunApp's forceTerminate()
    
    #### killallを使う場合
    set ocidExecAppURL to ocidRunApp's executableURL()
    set ocidFileName to ocidExecAppURL's lastPathComponent()
    set strFileName to ocidFileName as text
    
    set strCommandText to ("/usr/bin/killall -z " & strFileName & "") as text
    set ocidCommandText to refMe's NSString's stringWithString:strCommandText
    set ocidTermTask to refMe's NSTask's alloc()'s init()
    ocidTermTask's setLaunchPath:"/bin/zsh"
    ocidTermTask's setArguments:({"-c", ocidCommandText})
    set listDoneReturn to ocidTermTask's launchAndReturnError:(reference)
    
    
    ####killを使う場合
    set ocidPID to ocidRunApp's processIdentifier()
    set strPID to ocidPID as text
    log strPID
    set strCommandText to ("/bin/kill -9 " & strPID & "") as text
    set ocidCommandText to refMe's NSString's stringWithString:strCommandText
    set ocidTermTask to refMe's NSTask's alloc()'s init()
    ocidTermTask's setLaunchPath:"/bin/zsh"
    ocidTermTask's setArguments:({"-c", ocidCommandText})
    set listDoneReturn to ocidTermTask's launchAndReturnError:(reference)
    
    
  end if
end doQuitApp2UTI



|

FontReporterインストール

必須設定
Fontreporter



オフィシャルページはこちら
https://www.pdflib.com/de/download/kostenlose-software/fontreporter/
https://www.pdflib.com/


PDFLIBは他社に買収されたので
いつまで使えるか?は不透明。とりあえずARM版のDCでも基本動作はOK


【スクリプトエディタで開く】

#!/usr/bin/env osascript
----+----1----+----2----+-----3----+----4----+----5----+----6----+----7
#
#
#
#
# com.cocolog-nifty.quicktimer.icefloe
----+----1----+----2----+-----3----+----4----+----5----+----6----+----7
##自分環境がos12なので2.8にしているだけです
use AppleScript version "2.8"
use framework "Foundation"
use framework "AppKit"
use scripting additions

property refMe : a reference to current application

set appFileManager to refMe's NSFileManager's defaultManager()
set appShardWorkspace to refMe's NSWorkspace's sharedWorkspace()


###############################################
########まずは処理するアプリケーションを終了させる
###############################################

doQuitApp2UTI("com.adobe.Acrobat.Pro")
doQuitApp2UTI("com.adobe.Reader")

########################
####保存先ディレクトリ
########################
set ocidLibraryPathArray to (appFileManager's URLsForDirectory:(refMe's NSApplicationSupportDirectory) inDomains:(refMe's NSUserDomainMask))
set ocidUserPathURL to ocidLibraryPathArray's objectAtIndex:0
set ocidSaveDirPathURL to ocidUserPathURL's URLByAppendingPathComponent:"Adobe/Acrobat/DC/Plug-ins/PDFlib FontReporter" isDirectory:true
set ocidAttrDict to refMe's NSMutableDictionary's alloc()'s initWithCapacity:0
ocidAttrDict's setValue:511 forKey:(refMe's NSFilePosixPermissions)
set listResults to appFileManager's createDirectoryAtURL:(ocidSaveDirPathURL) withIntermediateDirectories:true attributes:(ocidAttrDict) |error|:(reference)

########################
#### ファイルダウンロード
########################
###起動時に削除される項目
set ocidTempDirPathURL to appFileManager's temporaryDirectory()
set ocidCleanupAtStartupURL to ocidTempDirPathURL's URLByAppendingPathComponent:"Cleanup At Startup"
####アクセス権777で作成
set ocidAttrDict to refMe's NSMutableDictionary's alloc()'s initWithCapacity:0
ocidAttrDict's setValue:511 forKey:(refMe's NSFilePosixPermissions)
appFileManager's createDirectoryAtURL:ocidCleanupAtStartupURL withIntermediateDirectories:true attributes:ocidAttrDict |error|:(reference)

set strDMGFileURL to "https://www.pdflib.com/binaries/plugins/FontReporter/PDFlib-FontReporter-Plugin-2.0-Acrobat-DC.dmg"
set ocidDMGFilePath to (refMe's NSString's stringWithString:strDMGFileURL)
set ocidDMGFilePathURL to refMe's NSURL's alloc()'s initWithString:ocidDMGFilePath

set ocidDMGData to refMe's NSData's dataWithContentsOfURL:ocidDMGFilePathURL

set ocidSaveDMGFilePathURL to ocidCleanupAtStartupURL's URLByAppendingPathComponent:"PDFlib-FontReporter-Plugin-2.0-Acrobat-DC.dmg" isDirectory:false
set boolResults to ocidDMGData's writeToURL:ocidSaveDMGFilePathURL atomically:true

if boolResults is false then
  return "ダウンロードに失敗しました"
end if

########################
#### ディスクを非表示でマウント
########################
set strDMGFilePathURL to ocidSaveDMGFilePathURL's |path|() as text
log strDMGFilePathURL
try
  set theComandText to ("/usr/bin/hdiutil attach  \"" & strDMGFilePathURL & "\" -noverify -nobrowse -noautoopen") as text
  do shell script theComandText
end try

########################
#### 対象ファイルをインストール
########################
set strInstallFilePathURL to "/Volumes/PDFlib-FontReporter-Plugin-2.0-Acrobat-DC/PDFlib FontReporter" as text
set strSaveDirPathURL to ocidSaveDirPathURL's |path|() as text
log strSaveDirPathURL
try
  set theComandText to ("/usr/bin/ditto  \"" & strInstallFilePathURL & "\"   \"" & strSaveDirPathURL & "\"") as text
  do shell script theComandText
end try

########################
####ディスクをアンマウント
########################
set strDiskMountPath to "/Volumes/PDFlib-FontReporter-Plugin-2.0-Acrobat-DC"
set ocidDiskMountPath to (refMe's NSString's stringWithString:strDiskMountPath)
set ocidDiskMountPathURL to refMe's NSURL's alloc()'s initWithString:ocidDiskMountPath
try
  ###
  set theComandText to ("/usr/sbin/diskutil eject  \"" & strDiskMountPath & "\"") as text
  do shell script theComandText
on error
  ####一旦マウントしーの
  set theComandText to ("/usr/sbin/diskutil mount \"" & strDiskMountPath & "\"") as text
  do shell script theComandText
  ###イジェクト
  set listResults to (appShardWorkspace's unmountAndEjectDeviceAtURL:ocidDiskMountPathURL |error|:(reference))
end try


#############################
###スクリプトメニューを有効にする
#############################
tell application id "com.apple.ScriptMenuApp"
  launch
  activate
end tell

#############################
###CFPreferencesを再起動
#############################
#####CFPreferencesを再起動
set strCommandText to "/usr/bin/killall cfprefsd" as text
do shell script strCommandText
delay 2


#############################
###Finderでフォルダを開く
#############################
appShardWorkspace's openURL:ocidSaveDirPathURL


return "処理終了"







###################################
########アプリケーションを終了させる
###################################
to doQuitApp2UTI(argUTI)
  set strUTI to argUTI as text
  set ocidResultsArray to refMe's NSRunningApplication's runningApplicationsWithBundleIdentifier:strUTI
  set numCntArray to ocidResultsArray count
  if numCntArray ≠ 0 then
    set ocidRunApp to ocidResultsArray's objectAtIndex:0
    
    ###通常終了
    set boolDone to ocidRunApp's terminate()
    ####強制終了
    set boolDone to ocidRunApp's forceTerminate()
    
    #### killallを使う場合
    set ocidExecAppURL to ocidRunApp's executableURL()
    set ocidFileName to ocidExecAppURL's lastPathComponent()
    set strFileName to ocidFileName as text
    
    set strCommandText to ("/usr/bin/killall -z " & strFileName & "") as text
    set ocidCommandText to refMe's NSString's stringWithString:strCommandText
    set ocidTermTask to refMe's NSTask's alloc()'s init()
    ocidTermTask's setLaunchPath:"/bin/zsh"
    ocidTermTask's setArguments:({"-c", ocidCommandText})
    set listDoneReturn to ocidTermTask's launchAndReturnError:(reference)
    
    
    ####killを使う場合
    set ocidPID to ocidRunApp's processIdentifier()
    set strPID to ocidPID as text
    log strPID
    set strCommandText to ("/bin/kill -9 " & strPID & "") as text
    set ocidCommandText to refMe's NSString's stringWithString:strCommandText
    set ocidTermTask to refMe's NSTask's alloc()'s init()
    ocidTermTask's setLaunchPath:"/bin/zsh"
    ocidTermTask's setArguments:({"-c", ocidCommandText})
    set listDoneReturn to ocidTermTask's launchAndReturnError:(reference)
    
    
  end if
end doQuitApp2UTI



|

その他のカテゴリー

Accessibility Acrobat Acrobat 2020 Acrobat 2024 Acrobat AddOn Acrobat Annotation Acrobat AppleScript Acrobat ARMDC Acrobat AV2 Acrobat BookMark Acrobat Classic Acrobat DC Acrobat Dialog Acrobat Distiller Acrobat Form Acrobat GentechAI Acrobat JS Acrobat JS Word Search Acrobat Maintenance Acrobat Manifest Acrobat Menu Acrobat Merge Acrobat Open Acrobat PDFPage Acrobat Plugin Acrobat Preferences Acrobat Preflight Acrobat Print Acrobat Python Acrobat Reader Acrobat Reader Localized Acrobat Reference Acrobat Registered Products Acrobat SCA Acrobat SCA Updater Acrobat Sequ Acrobat Sign Acrobat Stamps Acrobat URL List Mac Acrobat URL List Windows Acrobat Watermark Acrobat Windows Acrobat Windows Reader Admin Admin Account Admin Apachectl Admin ConfigCode Admin configCode Admin Device Management Admin LaunchServices Admin Locationd Admin loginitem Admin Maintenance Admin Mobileconfig Admin NetWork Admin Permission Admin Pkg Admin Power Management Admin Printer Admin Printer Basic Admin Printer Custompapers Admin SetUp Admin SMB Admin softwareupdate Admin Support Admin System Information Admin TCC Admin Tools Admin Umask Admin Users Admin Volumes Admin XProtect Adobe Adobe AUSST Adobe Bridge Adobe Documents Adobe FDKO Adobe Fonts Adobe Reference Adobe RemoteUpdateManager Adobe Sap Code AppKit Apple AppleScript AppleScript Duplicate AppleScript entire contents AppleScript List AppleScript ObjC AppleScript Osax AppleScript PDF AppleScript Pictures AppleScript record AppleScript Video Applications AppStore Archive Archive Keka Attributes Automator BackUp Barcode Barcode Decode Barcode QR Bash Basic Basic Path Bluetooth BOX Browser Calendar CD/DVD Choose Chrome Chromedriver CIImage CityCode CloudStorage Color Color NSColor Color NSColorList com.apple.LaunchServices.OpenWith Console Contacts CotEditor CURL current application Date&Time delimiters Desktop Desktop Position Device Diff Disk do shell script Dock Dock Launchpad DropBox Droplet eMail Encode % Encode Decode Encode HTML Entity Encode UTF8 Error EXIFData exiftool ffmpeg File File Name Finder Finder Window Firefox Folder FolderAction Font List FontCollections Fonts Fonts Asset_Font Fonts ATS Fonts Emoji Fonts Maintenance Fonts Morisawa Fonts Python Fonts Variable Foxit GIF github Guide HTML Icon Icon Assets.car Illustrator Image Events ImageOptim Input Dictionary iPhone iWork Javascript Jedit Ω Json Label Language Link locationd lsappinfo m3u8 Mail Map Math Media Media AVAsset Media AVconvert Media AVFoundation Media AVURLAsset Media Movie Media Music Memo Messages Microsoft Microsoft Edge Microsoft Excel Microsoft Fonts Microsoft Office Microsoft Office Link Microsoft OneDrive Microsoft Teams Mouse Music Node Notes NSArray NSArray Sort NSAttributedString NSBezierPath NSBitmapImageRep NSBundle NSCFBoolean NSCharacterSet NSData NSDecimalNumber NSDictionary NSError NSEvent NSFileAttributes NSFileManager NSFileManager enumeratorAtURL NSFont NSFontManager NSGraphicsContext NSGraphicsContext Crop NSImage NSIndex NSKeyedArchiver NSKeyedUnarchiver NSLocale NSMetadataItem NSMutableArray NSMutableDictionary NSMutableString NSNotFound NSNumber NSOpenPanel NSPasteboard NSpoint NSPredicate NSRange NSRect NSRegularExpression NSRunningApplication NSScreen NSSet NSSize NSString NSString stringByApplyingTransform NSStringCompareOptions NSTask NSTimeZone NSUbiquitous NSURL NSURL File NSURLBookmark NSURLComponents NSURLResourceKey NSURLSession NSUserDefaults NSUUID NSView NSWorkspace Numbers OAuth PDF PDF Image2PDF PDF MakePDF PDF nUP PDF Pymupdf PDF Pypdf PDFContext PDFDisplayBox PDFImageRep PDFKit PDFKit Annotation PDFKit AnnotationWidget PDFKit DocumentPermissions PDFKit OCR PDFKit Outline PDFKit Start PDFPage PDFPage Rotation PDFView perl Photoshop PlistBuddy pluginkit plutil postalcode PostScript PowerShell prefPane Preview Python Python eyed3 Python pip QuickLook QuickTime ReadMe Regular Expression Reminders ReName Repeat RTF Safari SaveFile ScreenCapture ScreenSaver Script Editor Script Menu SF Symbols character id SF Symbols Entity Shortcuts Shortcuts Events sips Skype Slack Sound Spotlight sqlite StandardAdditions StationSearch Subtitles LRC Subtitles SRT Subtitles VTT Swift swiftDialog System Events System Settings TemporaryItems Terminal Text Text CSV Text MD Text TSV TextEdit Tools Translate Trash Twitter Typography UI Unit Conversion UTType valueForKeyPath Video VisionKit Visual Studio Code VMware Fusion Wacom Weather webarchive webp Wifi Windows XML XML EPUB XML HTML XML LSSharedFileList XML LSSharedFileList sfl2 XML LSSharedFileList sfl3 XML objectsForXQuery XML OPML XML Plist XML Plist System Events XML RSS XML savedSearch XML SVG XML TTML XML webloc XML xmllint XML XMP YouTube Zero Padding zoom