Skip to content

Instantly share code, notes, and snippets.

@Xrymz
Xrymz / background.js
Created September 26, 2018 12:28 — forked from hubgit/background.js
Chrome extension to block common third-party background requests
var urls = [
'*://graph.facebook.com/*',
'*://platform.twitter.com/*',
'*://*.google-analytics.com/*'
];
var response = function() {
return { cancel: true };
}