Last active
March 17, 2021 04:39
-
-
Save songouyang/53c5ea2dc6d87700c93f32b71642cbca to your computer and use it in GitHub Desktop.
删除 Mac 版迅雷垃圾组件
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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