Created
September 12, 2015 20:58
-
-
Save ypid/387d24b8ea5f25315fd2 to your computer and use it in GitHub Desktop.
.gitignore file for Firefox/Iceweasel templates
This file contains 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
## .gitignore file ignoring all personal files which are not needed/wanted in a template. | |
## See http://kb.mozillazine.org/Profile_folder_-_Firefox#Folders | |
firefox/*/lock | |
firefox/*/sessionstore-backups/ | |
## Seems to be only metadata about installed addons. | |
firefox/*/addons.json | |
## Seems to be only metadata about installed addons. If active or not is not taken form that file. | |
firefox/*/extensions.json | |
## Saved form data | |
firefox/*/formhistory.sqlite | |
## HTTP Strict Transport Security | |
firefox/*/SiteSecurityServiceState.txt | |
## Cookies | |
firefox/*/cookies.sqlite* | |
## webappsstore.sqlite contains DOM Storage data. This data is set by web sites much in the same way as cookies. | |
firefox/*/webappsstore.sqlite* | |
## Security certificates | |
firefox/*/cert8.db | |
## Bookmarks, browsing and download history | |
firefox/*/places.sqlite* | |
## Stored sessions | |
firefox/*/sessionstore.js | |
## Password storage | |
firefox/*/key3.db | |
## Old format | |
firefox/*/signons.sqlite | |
## New format | |
firefox/*/logins.json | |
# firefox/*/urlclassifierkey3.txt | |
## Automatically downloaded list of blocked add-ons. | |
firefox/*/blocklist.xml | |
## Individual settings for pages. | |
firefox/*/content-prefs.sqlite | |
## Toolbar and window size/position settings | |
## Needed: Stores "View → Toolbars → Menu Bar" | |
# firefox/*/xulstore.json | |
## Only visible at runtime. | |
# firefox/*/sessionCheckpoints.json | |
## uBlock database | |
firefox/*/extension-data/ublock.sqlite |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment