├── .eslintignore ├── .eslintrc ├── .gitignore ├── .jpmignore ├── LICENSE ├── Makefile ├── README.md ├── data ├── .eslintrc └── content-bridge.js ├── docs ├── consent.md ├── data_practices.md ├── early_exit_survey.md ├── metrics.md └── submit.rst ├── lib ├── TabTracker.js ├── bloomfilter.js ├── fs.js ├── heatmap.js ├── heatmap_consts.js ├── index.js ├── jose.js ├── network.js ├── pornbf.js └── variations.js ├── package.json ├── pornfilter └── domain_blocklist.txt ├── require.js └── test └── test-variations.js /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/heatmap/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/heatmap/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/heatmap/HEAD/.gitignore -------------------------------------------------------------------------------- /.jpmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/heatmap/HEAD/.jpmignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/heatmap/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/heatmap/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/heatmap/HEAD/README.md -------------------------------------------------------------------------------- /data/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/heatmap/HEAD/data/.eslintrc -------------------------------------------------------------------------------- /data/content-bridge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/heatmap/HEAD/data/content-bridge.js -------------------------------------------------------------------------------- /docs/consent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/heatmap/HEAD/docs/consent.md -------------------------------------------------------------------------------- /docs/data_practices.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/heatmap/HEAD/docs/data_practices.md -------------------------------------------------------------------------------- /docs/early_exit_survey.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/heatmap/HEAD/docs/early_exit_survey.md -------------------------------------------------------------------------------- /docs/metrics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/heatmap/HEAD/docs/metrics.md -------------------------------------------------------------------------------- /docs/submit.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/heatmap/HEAD/docs/submit.rst -------------------------------------------------------------------------------- /lib/TabTracker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/heatmap/HEAD/lib/TabTracker.js -------------------------------------------------------------------------------- /lib/bloomfilter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/heatmap/HEAD/lib/bloomfilter.js -------------------------------------------------------------------------------- /lib/fs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/heatmap/HEAD/lib/fs.js -------------------------------------------------------------------------------- /lib/heatmap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/heatmap/HEAD/lib/heatmap.js -------------------------------------------------------------------------------- /lib/heatmap_consts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/heatmap/HEAD/lib/heatmap_consts.js -------------------------------------------------------------------------------- /lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/heatmap/HEAD/lib/index.js -------------------------------------------------------------------------------- /lib/jose.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/heatmap/HEAD/lib/jose.js -------------------------------------------------------------------------------- /lib/network.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/heatmap/HEAD/lib/network.js -------------------------------------------------------------------------------- /lib/pornbf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/heatmap/HEAD/lib/pornbf.js -------------------------------------------------------------------------------- /lib/variations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/heatmap/HEAD/lib/variations.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/heatmap/HEAD/package.json -------------------------------------------------------------------------------- /pornfilter/domain_blocklist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/heatmap/HEAD/pornfilter/domain_blocklist.txt -------------------------------------------------------------------------------- /require.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/heatmap/HEAD/require.js -------------------------------------------------------------------------------- /test/test-variations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/heatmap/HEAD/test/test-variations.js --------------------------------------------------------------------------------