cask "google-chrome@beta" do version "132.0.6834.6" sha256 :no_check url "https://dl.google.com/chrome/mac/universal/beta/googlechromebeta.dmg" name "Google Chrome Beta" desc "Web browser" homepage "https://www.google.com/chrome/beta/" livecheck do url "https://chromiumdash.appspot.com/fetch_releases?channel=Beta&platform=Mac" strategy :json do |json| json.map do |item| item["version"] end end end auto_updates true depends_on macos: ">= :big_sur" app "Google Chrome Beta.app" zap launchctl: [ "com.google.keystone.agent", "com.google.keystone.daemon", ], trash: [ "/Library/Caches/com.google.SoftwareUpdate.*", "/Library/Google/Google Chrome Brand.plist", "/Library/Google/GoogleSoftwareUpdate", "~/Library/Application Support/com.apple.sharedfilelist/com.apple.LSSharedFileList.ApplicationRecentDocuments/com.google.chrome.app.*.sfl*", "~/Library/Application Support/com.apple.sharedfilelist/com.apple.LSSharedFileList.ApplicationRecentDocuments/com.google.chrome.sfl*", "~/Library/Application Support/Google/Chrome Beta", "~/Library/Caches/com.google.Chrome", "~/Library/Caches/com.google.Chrome.helper.*", "~/Library/Caches/com.google.Keystone", "~/Library/Caches/com.google.Keystone.Agent", "~/Library/Caches/com.google.SoftwareUpdate", "~/Library/Caches/Google/Chrome Beta", "~/Library/Google/Google Chrome Brand.plist", "~/Library/Google/GoogleSoftwareUpdate", "~/Library/LaunchAgents/com.google.keystone.agent.plist", "~/Library/LaunchAgents/com.google.keystone.xpcservice.plist", "~/Library/Logs/GoogleSoftwareUpdateAgent.log", "~/Library/Preferences/com.google.Chrome.plist", "~/Library/Preferences/com.google.Keystone.Agent.plist", "~/Library/Saved Application State/com.google.Chrome.app.*.savedState", "~/Library/Saved Application State/com.google.Chrome.savedState", "~/Library/WebKit/com.google.Chrome", ], rmdir: [ "/Library/Google", "~/Library/Application Support/Google", "~/Library/Caches/Google", "~/Library/Google", ] end