Skip to content

Instantly share code, notes, and snippets.

@songouyang
Last active March 17, 2021 04:39
Show Gist options
  • Save songouyang/53c5ea2dc6d87700c93f32b71642cbca to your computer and use it in GitHub Desktop.
Save songouyang/53c5ea2dc6d87700c93f32b71642cbca to your computer and use it in GitHub Desktop.
删除 Mac 版迅雷垃圾组件
#!/bin/bash
cd /Applications/Thunder.app/Contents
echo "Removing XLPlayer..."
rm -rf Bundles/XLPlayer.app
echo "Removing unnecessary plugins..."
cd PlugIns/
sudo rm -rf advertising.xlplugin featuredpage.xlplugin iOSThunder.xlplugin liveupdate.xlplugin lixianspace.xlplugin myvip.xlplugin softmanager.xlplugin viprenew.xlplugin viptask.xlplugin viptips.xlplugin xiazaibao.xlplugin xlplayer.xlplugin activitycenter.xlplugin bbassistant.xlplugin livestream.xlplugin
sudo rm -rf webgame.xlplugin onethingcloud.xlplugin thunderword.xlplugin
echo "Disable autoupdate..."
sudo bash -c "echo '127.0.0.1 http://liveupdate.mac.sandai.net' >> /etc/hosts"
echo "Done"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment