├── .gitattributes ├── .gitignore ├── Google-Analytic-Cookie-Cruncher_v_2_0_0_0_1.zip └── Older_versions └── GA-Cookie-Cruncher-v2.zip /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | 4 | # Custom for Visual Studio 5 | *.cs diff=csharp 6 | *.sln merge=union 7 | *.csproj merge=union 8 | *.vbproj merge=union 9 | *.fsproj merge=union 10 | *.dbproj merge=union 11 | 12 | # Standard to msysgit 13 | *.doc diff=astextplain 14 | *.DOC diff=astextplain 15 | *.docx diff=astextplain 16 | *.DOCX diff=astextplain 17 | *.dot diff=astextplain 18 | *.DOT diff=astextplain 19 | *.pdf diff=astextplain 20 | *.PDF diff=astextplain 21 | *.rtf diff=astextplain 22 | *.RTF diff=astextplain 23 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Windows image file caches 2 | Thumbs.db 3 | ehthumbs.db 4 | 5 | # Folder config file 6 | Desktop.ini 7 | 8 | # Recycle Bin used on file shares 9 | $RECYCLE.BIN/ 10 | 11 | # Windows Installer files 12 | *.cab 13 | *.msi 14 | *.msm 15 | *.msp 16 | 17 | # ========================= 18 | # Operating System Files 19 | # ========================= 20 | 21 | # OSX 22 | # ========================= 23 | 24 | .DS_Store 25 | .AppleDouble 26 | .LSOverride 27 | 28 | # Icon must ends with two \r. 29 | Icon 30 | 31 | # Thumbnails 32 | ._* 33 | 34 | # Files that might appear on external disk 35 | .Spotlight-V100 36 | .Trashes 37 | -------------------------------------------------------------------------------- /Google-Analytic-Cookie-Cruncher_v_2_0_0_0_1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdegrazia/Google-Analytic-Cookie-Cruncher/b384f8610475b7a04a3b4f48e98c8a82d3b771a6/Google-Analytic-Cookie-Cruncher_v_2_0_0_0_1.zip -------------------------------------------------------------------------------- /Older_versions/GA-Cookie-Cruncher-v2.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdegrazia/Google-Analytic-Cookie-Cruncher/b384f8610475b7a04a3b4f48e98c8a82d3b771a6/Older_versions/GA-Cookie-Cruncher-v2.zip --------------------------------------------------------------------------------