Warns users they are accessing websites owned by Comcast.In order to ensure Net Neutrality, this tool warns users before accessing sites owned or operated by Comcast, giving them the opportunity to boycott.
This extension is completely open-sourced and you are encouraged to redistribute it in any way you like. However, the extension owner makes no guarantees concerning the code or anyone who may chose to redistribute.
//////////////////////////////////////////////////////////////////////////////
(function(){
onBeforeReqHandler = function(details){
var message = "The url " + details.url.split('?')[0] + " is owned by Comcast."
message += "\rAre you sure you want to navigate to this page?"
return {cancel: !confirm(message)}
};
onBeforeReqPartialHandler = function (details) {
var message = "The url " + details.url.split('?')[0] + " is partially owned by Comcast."
message += "\rAre you sure you want to navigate to this page?"
return { cancel: !confirm(message) }
};