1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88
|
<?xml version="1.0" encoding="UTF-8"?>
<!--
BleachBit
Copyright (C) 2008-2021 Andrew Ziem
https://www.bleachbit.org
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
-->
<cleaner id="seamonkey">
<label>SeaMonkey</label>
<description>Web browser</description>
<running type="exe">seamonkey.exe</running>
<running type="exe">seamonkey</running>
<option id="cache">
<label>Cache</label>
<description>Delete the web cache, which reduces time to display revisited pages</description>
<!--
examples:
/home/bob/.mozilla/default/Cache/B4D1D17Fd01
/home/bob/.mozilla/default/Cache/_CACHE_MAP_
/home/bob/.mozilla/test/Cache/7CD2831Ed01
/home/bob/.mozilla/seamonkey/eh6d1237.default/Cache (SeaMonkey 2.0, Fedora 14)
C:\Documents and Settings\bob\Local Settings\Application Data\Mozilla\Profiles\default\Cache
C:\Documents and Settings\bob\Local Settings\Application Data\Mozilla\SeaMonkey\Profiles\mpt1tdce.default\Cache (SeaMonkey 2.4.1, Windows XP)
The dilemma for old SeaMonkey if using '*' instead of 'default' to catch
all SeaMonkey profiles, it catches non-SeaMonkey profiles
such as 'eclipse' and 'firefox'. Using profiles is rare, so we don't.
-->
<action command="delete" search="walk.files" path="~/.mozilla/default/Cache/"/>
<action command="delete" search="walk.files" path="~/.mozilla/seamonkey/*/Cache/"/>
<action command="delete" search="walk.files" path="$localappdata\Mozilla\Profiles\default\Cache\"/>
<action command="delete" search="walk.files" path="$localappdata\Mozilla\Profiles\default\cache2\"/>
<action command="delete" search="walk.files" path="$localappdata\Mozilla\SeaMonkey\Profiles\*\Cache\"/>
<action command="delete" search="walk.files" path="$localappdata\Mozilla\SeaMonkey\Profiles\*\cache2\"/>
<action command="delete" search="walk.files" path="$localappdata\Mozilla\SeaMonkey\Profiles\*\startupCache\"/>
</option>
<option id="chat_logs">
<label>Chat logs</label>
<description>Delete the chat logs</description>
<!-- example: /home/bob/.mozilla/default/1oq1wrww.slt/chatzilla/logs/client.2009-07-03.log -->
<!-- example: C:\Documents and Settings\bob\Application Data\Mozilla\SeaMonkey\Profiles\mpt1tdce.default\chatzilla\logs (SeaMonkey 2.4.1, Windows XP) -->
<action command="delete" search="glob" path="$APPDATA\Mozilla\Profiles\default\????????.slt\chatzilla\logs\*log"/>
<action command="delete" search="glob" path="$APPDATA\Mozilla\SeaMonkey\Profiles\*\chatzilla\inputHistory.txt"/>
<action command="delete" search="glob" path="$APPDATA\Mozilla\SeaMonkey\Profiles\*\chatzilla\urls.txt"/>
<action command="delete" search="glob" path="~/.mozilla/*/????????.slt/chatzilla/logs/*log"/>
<action command="delete" search="walk.files" path="$APPDATA\Mozilla\SeaMonkey\Profiles\*\chatzilla\logs\"/>
</option>
<option id="cookies">
<label>Cookies</label>
<description>Delete cookies, which contain information such as web site preferences, authentication, and tracking identification</description>
<!-- example: /home/bob/.mozilla/default/1oq1wrww.slt/cookies.txt -->
<!-- example: /home/bob/.mozilla/test/pfr72dbv.slt/cookies.txt -->
<!-- example: /home/bob/.mozilla/seamonkey/*.default/cookies.sqlite (SeaMonkey 2.0, Fedora 14) -->
<!-- example: C:\Documents and Settings\bob\Application Data\Mozilla\SeaMonkey\Profiles\mpt1tdce.default (SeaMonkey 2.4.1, Windows XP) -->
<action command="delete" search="glob" path="~/.mozilla/*/????????.slt/cookies.txt"/>
<action command="delete" search="glob" path="~/.mozilla/seamonkey/*.default/cookies.sqlite"/>
<action command="delete" search="glob" path="$APPDATA\Mozilla\SeaMonkey\Profiles\*\cookies.sqlite"/>
<action command="delete" search="glob" path="$APPDATA\Mozilla\Profiles\default\????????.slt\cookies.txt"/>
</option>
<option id="download_history">
<label>Download history</label>
<description>List of files downloaded</description>
<action command="delete" search="glob" path="~/.mozilla/seamonkey/*.default/downloads.sqlite"/>
<action command="delete" search="glob" path="$APPDATA\Mozilla\SeaMonkey\Profiles\*\downloads.sqlite"/>
</option>
<option id="history">
<label>History</label>
<description>Delete the list of visited web pages</description>
<action command="delete" search="glob" path="$APPDATA\Mozilla\Profiles\default\????????.slt\history.dat"/>
<action command="delete" search="glob" path="~/.mozilla/*/????????.slt/history.dat"/>
<action command="delete" search="glob" path="~/.mozilla/seamonkey/*.default/urlbarhistory.sqlite"/>
<action command="delete" search="glob" path="$APPDATA\Mozilla\SeaMonkey\Profiles\*\urlbarhistory.sqlite"/>
<action command="delete" search="glob" path="$APPDATA\Mozilla\SeaMonkey\Profiles\*\sessionstore.bak"/>
</option>
</cleaner>
|