├── LICENSE.txt ├── Makefile ├── Plugin ├── Makefile ├── chrome.manifest ├── chrome │ └── content │ │ ├── attribute.js │ │ ├── attribute.xul │ │ ├── browser.xul │ │ ├── canvasFingerprinting.xul │ │ ├── jquery-2.1.0.min.js │ │ ├── options.js │ │ ├── options.xul │ │ ├── overlay.js │ │ ├── thirdparties.js │ │ ├── thirdparties.xul │ │ ├── webidentities.css │ │ ├── webidentities.js │ │ └── webidentities.xul ├── defaults │ └── preferences │ │ └── defaults.js ├── icon.png ├── install.rdf ├── locale │ └── en-US │ │ └── translations.dtd ├── modules │ ├── detection.jsm │ ├── httpRequestObserver.jsm │ ├── preferencesObserver.jsm │ ├── profiles.jsm │ ├── randomFingerprintGenerator.jsm │ ├── responseListener.jsm │ └── webIdentity.jsm ├── profiles │ ├── chrome.json │ ├── firefox.json │ ├── opera.json │ └── safari.json └── skin │ ├── ajax-loader.gif │ ├── allow.png │ ├── block.png │ ├── cancel.png │ ├── collapsed.png │ ├── error.png │ ├── expanded.png │ ├── facebook-allowed.png │ ├── facebook-blocked.png │ ├── flash-allowed.png │ ├── flash-blocked.png │ ├── googleplus-allowed.png │ ├── googleplus-blocked.png │ ├── help.png │ ├── icon32-disabled.png │ ├── icon32.png │ ├── icon64-disabled.png │ ├── icon64.png │ ├── linkedin-allowed.png │ ├── linkedin-blocked.png │ ├── logo.png │ ├── other-allowed.png │ ├── other-blocked.png │ ├── pinterest-allowed.png │ ├── pinterest-blocked.png │ ├── private-browsing.png │ ├── quicktime-allowed.png │ ├── quicktime-blocked.png │ ├── settings.png │ ├── silverlight-allowed.png │ ├── silverlight-blocked.png │ ├── skin.css │ ├── spoof.png │ ├── toolbar-disabled.png │ ├── toolbar-icon.png │ ├── tumblr-allowed.png │ ├── tumblr-blocked.png │ ├── twitter-allowed.png │ ├── twitter-blocked.png │ ├── vlc-allowed.png │ └── vlc-blocked.png └── README.md /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christoftorres/FP-Block/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christoftorres/FP-Block/HEAD/Makefile -------------------------------------------------------------------------------- /Plugin/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christoftorres/FP-Block/HEAD/Plugin/Makefile -------------------------------------------------------------------------------- /Plugin/chrome.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christoftorres/FP-Block/HEAD/Plugin/chrome.manifest -------------------------------------------------------------------------------- /Plugin/chrome/content/attribute.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christoftorres/FP-Block/HEAD/Plugin/chrome/content/attribute.js -------------------------------------------------------------------------------- /Plugin/chrome/content/attribute.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christoftorres/FP-Block/HEAD/Plugin/chrome/content/attribute.xul -------------------------------------------------------------------------------- /Plugin/chrome/content/browser.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christoftorres/FP-Block/HEAD/Plugin/chrome/content/browser.xul -------------------------------------------------------------------------------- /Plugin/chrome/content/canvasFingerprinting.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christoftorres/FP-Block/HEAD/Plugin/chrome/content/canvasFingerprinting.xul -------------------------------------------------------------------------------- /Plugin/chrome/content/jquery-2.1.0.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christoftorres/FP-Block/HEAD/Plugin/chrome/content/jquery-2.1.0.min.js -------------------------------------------------------------------------------- /Plugin/chrome/content/options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christoftorres/FP-Block/HEAD/Plugin/chrome/content/options.js -------------------------------------------------------------------------------- /Plugin/chrome/content/options.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christoftorres/FP-Block/HEAD/Plugin/chrome/content/options.xul -------------------------------------------------------------------------------- /Plugin/chrome/content/overlay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christoftorres/FP-Block/HEAD/Plugin/chrome/content/overlay.js -------------------------------------------------------------------------------- /Plugin/chrome/content/thirdparties.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christoftorres/FP-Block/HEAD/Plugin/chrome/content/thirdparties.js -------------------------------------------------------------------------------- /Plugin/chrome/content/thirdparties.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christoftorres/FP-Block/HEAD/Plugin/chrome/content/thirdparties.xul -------------------------------------------------------------------------------- /Plugin/chrome/content/webidentities.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christoftorres/FP-Block/HEAD/Plugin/chrome/content/webidentities.css -------------------------------------------------------------------------------- /Plugin/chrome/content/webidentities.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christoftorres/FP-Block/HEAD/Plugin/chrome/content/webidentities.js -------------------------------------------------------------------------------- /Plugin/chrome/content/webidentities.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christoftorres/FP-Block/HEAD/Plugin/chrome/content/webidentities.xul -------------------------------------------------------------------------------- /Plugin/defaults/preferences/defaults.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christoftorres/FP-Block/HEAD/Plugin/defaults/preferences/defaults.js -------------------------------------------------------------------------------- /Plugin/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christoftorres/FP-Block/HEAD/Plugin/icon.png -------------------------------------------------------------------------------- /Plugin/install.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christoftorres/FP-Block/HEAD/Plugin/install.rdf -------------------------------------------------------------------------------- /Plugin/locale/en-US/translations.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christoftorres/FP-Block/HEAD/Plugin/locale/en-US/translations.dtd -------------------------------------------------------------------------------- /Plugin/modules/detection.jsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christoftorres/FP-Block/HEAD/Plugin/modules/detection.jsm -------------------------------------------------------------------------------- /Plugin/modules/httpRequestObserver.jsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christoftorres/FP-Block/HEAD/Plugin/modules/httpRequestObserver.jsm -------------------------------------------------------------------------------- /Plugin/modules/preferencesObserver.jsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christoftorres/FP-Block/HEAD/Plugin/modules/preferencesObserver.jsm -------------------------------------------------------------------------------- /Plugin/modules/profiles.jsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christoftorres/FP-Block/HEAD/Plugin/modules/profiles.jsm -------------------------------------------------------------------------------- /Plugin/modules/randomFingerprintGenerator.jsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christoftorres/FP-Block/HEAD/Plugin/modules/randomFingerprintGenerator.jsm -------------------------------------------------------------------------------- /Plugin/modules/responseListener.jsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christoftorres/FP-Block/HEAD/Plugin/modules/responseListener.jsm -------------------------------------------------------------------------------- /Plugin/modules/webIdentity.jsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christoftorres/FP-Block/HEAD/Plugin/modules/webIdentity.jsm -------------------------------------------------------------------------------- /Plugin/profiles/chrome.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christoftorres/FP-Block/HEAD/Plugin/profiles/chrome.json -------------------------------------------------------------------------------- /Plugin/profiles/firefox.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christoftorres/FP-Block/HEAD/Plugin/profiles/firefox.json -------------------------------------------------------------------------------- /Plugin/profiles/opera.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christoftorres/FP-Block/HEAD/Plugin/profiles/opera.json -------------------------------------------------------------------------------- /Plugin/profiles/safari.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christoftorres/FP-Block/HEAD/Plugin/profiles/safari.json -------------------------------------------------------------------------------- /Plugin/skin/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christoftorres/FP-Block/HEAD/Plugin/skin/ajax-loader.gif -------------------------------------------------------------------------------- /Plugin/skin/allow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christoftorres/FP-Block/HEAD/Plugin/skin/allow.png -------------------------------------------------------------------------------- /Plugin/skin/block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christoftorres/FP-Block/HEAD/Plugin/skin/block.png -------------------------------------------------------------------------------- /Plugin/skin/cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christoftorres/FP-Block/HEAD/Plugin/skin/cancel.png -------------------------------------------------------------------------------- /Plugin/skin/collapsed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christoftorres/FP-Block/HEAD/Plugin/skin/collapsed.png -------------------------------------------------------------------------------- /Plugin/skin/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christoftorres/FP-Block/HEAD/Plugin/skin/error.png -------------------------------------------------------------------------------- /Plugin/skin/expanded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christoftorres/FP-Block/HEAD/Plugin/skin/expanded.png -------------------------------------------------------------------------------- /Plugin/skin/facebook-allowed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christoftorres/FP-Block/HEAD/Plugin/skin/facebook-allowed.png -------------------------------------------------------------------------------- /Plugin/skin/facebook-blocked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christoftorres/FP-Block/HEAD/Plugin/skin/facebook-blocked.png -------------------------------------------------------------------------------- /Plugin/skin/flash-allowed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christoftorres/FP-Block/HEAD/Plugin/skin/flash-allowed.png -------------------------------------------------------------------------------- /Plugin/skin/flash-blocked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christoftorres/FP-Block/HEAD/Plugin/skin/flash-blocked.png -------------------------------------------------------------------------------- /Plugin/skin/googleplus-allowed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christoftorres/FP-Block/HEAD/Plugin/skin/googleplus-allowed.png -------------------------------------------------------------------------------- /Plugin/skin/googleplus-blocked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christoftorres/FP-Block/HEAD/Plugin/skin/googleplus-blocked.png -------------------------------------------------------------------------------- /Plugin/skin/help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christoftorres/FP-Block/HEAD/Plugin/skin/help.png -------------------------------------------------------------------------------- /Plugin/skin/icon32-disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christoftorres/FP-Block/HEAD/Plugin/skin/icon32-disabled.png -------------------------------------------------------------------------------- /Plugin/skin/icon32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christoftorres/FP-Block/HEAD/Plugin/skin/icon32.png -------------------------------------------------------------------------------- /Plugin/skin/icon64-disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christoftorres/FP-Block/HEAD/Plugin/skin/icon64-disabled.png -------------------------------------------------------------------------------- /Plugin/skin/icon64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christoftorres/FP-Block/HEAD/Plugin/skin/icon64.png -------------------------------------------------------------------------------- /Plugin/skin/linkedin-allowed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christoftorres/FP-Block/HEAD/Plugin/skin/linkedin-allowed.png -------------------------------------------------------------------------------- /Plugin/skin/linkedin-blocked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christoftorres/FP-Block/HEAD/Plugin/skin/linkedin-blocked.png -------------------------------------------------------------------------------- /Plugin/skin/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christoftorres/FP-Block/HEAD/Plugin/skin/logo.png -------------------------------------------------------------------------------- /Plugin/skin/other-allowed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christoftorres/FP-Block/HEAD/Plugin/skin/other-allowed.png -------------------------------------------------------------------------------- /Plugin/skin/other-blocked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christoftorres/FP-Block/HEAD/Plugin/skin/other-blocked.png -------------------------------------------------------------------------------- /Plugin/skin/pinterest-allowed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christoftorres/FP-Block/HEAD/Plugin/skin/pinterest-allowed.png -------------------------------------------------------------------------------- /Plugin/skin/pinterest-blocked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christoftorres/FP-Block/HEAD/Plugin/skin/pinterest-blocked.png -------------------------------------------------------------------------------- /Plugin/skin/private-browsing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christoftorres/FP-Block/HEAD/Plugin/skin/private-browsing.png -------------------------------------------------------------------------------- /Plugin/skin/quicktime-allowed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christoftorres/FP-Block/HEAD/Plugin/skin/quicktime-allowed.png -------------------------------------------------------------------------------- /Plugin/skin/quicktime-blocked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christoftorres/FP-Block/HEAD/Plugin/skin/quicktime-blocked.png -------------------------------------------------------------------------------- /Plugin/skin/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christoftorres/FP-Block/HEAD/Plugin/skin/settings.png -------------------------------------------------------------------------------- /Plugin/skin/silverlight-allowed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christoftorres/FP-Block/HEAD/Plugin/skin/silverlight-allowed.png -------------------------------------------------------------------------------- /Plugin/skin/silverlight-blocked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christoftorres/FP-Block/HEAD/Plugin/skin/silverlight-blocked.png -------------------------------------------------------------------------------- /Plugin/skin/skin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christoftorres/FP-Block/HEAD/Plugin/skin/skin.css -------------------------------------------------------------------------------- /Plugin/skin/spoof.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christoftorres/FP-Block/HEAD/Plugin/skin/spoof.png -------------------------------------------------------------------------------- /Plugin/skin/toolbar-disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christoftorres/FP-Block/HEAD/Plugin/skin/toolbar-disabled.png -------------------------------------------------------------------------------- /Plugin/skin/toolbar-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christoftorres/FP-Block/HEAD/Plugin/skin/toolbar-icon.png -------------------------------------------------------------------------------- /Plugin/skin/tumblr-allowed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christoftorres/FP-Block/HEAD/Plugin/skin/tumblr-allowed.png -------------------------------------------------------------------------------- /Plugin/skin/tumblr-blocked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christoftorres/FP-Block/HEAD/Plugin/skin/tumblr-blocked.png -------------------------------------------------------------------------------- /Plugin/skin/twitter-allowed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christoftorres/FP-Block/HEAD/Plugin/skin/twitter-allowed.png -------------------------------------------------------------------------------- /Plugin/skin/twitter-blocked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christoftorres/FP-Block/HEAD/Plugin/skin/twitter-blocked.png -------------------------------------------------------------------------------- /Plugin/skin/vlc-allowed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christoftorres/FP-Block/HEAD/Plugin/skin/vlc-allowed.png -------------------------------------------------------------------------------- /Plugin/skin/vlc-blocked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christoftorres/FP-Block/HEAD/Plugin/skin/vlc-blocked.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christoftorres/FP-Block/HEAD/README.md --------------------------------------------------------------------------------