├── .editorconfig ├── .github ├── CODEOWNERS └── workflows │ ├── LICENSE.md │ ├── archive.yml │ ├── ghpages.yml │ ├── publish.yml │ └── update.yml ├── .gitignore ├── CONTRIBUTING.md ├── LICENSE.md ├── Makefile ├── README.md ├── charter ├── charter-detecting-unwanted-location-trackers.md └── charter-detecting-unwanted-location-trackers.pdf └── draft-ledvina-apple-google-unwanted-trackers.md /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdetwiler/draft-detecting-unwanted-location-trackers/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdetwiler/draft-detecting-unwanted-location-trackers/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/workflows/LICENSE.md: -------------------------------------------------------------------------------- 1 | This project is in the public domain. 2 | -------------------------------------------------------------------------------- /.github/workflows/archive.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdetwiler/draft-detecting-unwanted-location-trackers/HEAD/.github/workflows/archive.yml -------------------------------------------------------------------------------- /.github/workflows/ghpages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdetwiler/draft-detecting-unwanted-location-trackers/HEAD/.github/workflows/ghpages.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdetwiler/draft-detecting-unwanted-location-trackers/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.github/workflows/update.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdetwiler/draft-detecting-unwanted-location-trackers/HEAD/.github/workflows/update.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdetwiler/draft-detecting-unwanted-location-trackers/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdetwiler/draft-detecting-unwanted-location-trackers/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdetwiler/draft-detecting-unwanted-location-trackers/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdetwiler/draft-detecting-unwanted-location-trackers/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdetwiler/draft-detecting-unwanted-location-trackers/HEAD/README.md -------------------------------------------------------------------------------- /charter/charter-detecting-unwanted-location-trackers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdetwiler/draft-detecting-unwanted-location-trackers/HEAD/charter/charter-detecting-unwanted-location-trackers.md -------------------------------------------------------------------------------- /charter/charter-detecting-unwanted-location-trackers.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdetwiler/draft-detecting-unwanted-location-trackers/HEAD/charter/charter-detecting-unwanted-location-trackers.pdf -------------------------------------------------------------------------------- /draft-ledvina-apple-google-unwanted-trackers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdetwiler/draft-detecting-unwanted-location-trackers/HEAD/draft-ledvina-apple-google-unwanted-trackers.md --------------------------------------------------------------------------------