Left: | ||
Right: |
LEFT | RIGHT |
---|---|
1 /* | 1 /* |
2 * This file is part of Adblock Plus <https://adblockplus.org/>, | 2 * This file is part of Adblock Plus <https://adblockplus.org/>, |
3 * Copyright (C) 2006-2017 eyeo GmbH | 3 * Copyright (C) 2006-2017 eyeo GmbH |
4 * | 4 * |
5 * Adblock Plus is free software: you can redistribute it and/or modify | 5 * Adblock Plus is free software: you can redistribute it and/or modify |
6 * it under the terms of the GNU General Public License version 3 as | 6 * it under the terms of the GNU General Public License version 3 as |
7 * published by the Free Software Foundation. | 7 * published by the Free Software Foundation. |
8 * | 8 * |
9 * Adblock Plus is distributed in the hope that it will be useful, | 9 * Adblock Plus is distributed in the hope that it will be useful, |
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of | 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
(...skipping 545 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
556 if (parentFrameId != -1) | 556 if (parentFrameId != -1) |
557 frames[details[i].frameId].parent = frames[parentFrameId]; | 557 frames[details[i].frameId].parent = frames[parentFrameId]; |
558 } | 558 } |
559 } | 559 } |
560 }); | 560 }); |
561 }); | 561 }); |
562 }); | 562 }); |
563 | 563 |
564 chrome.webRequest.onBeforeRequest.addListener(details => | 564 chrome.webRequest.onBeforeRequest.addListener(details => |
565 { | 565 { |
566 // The high-level code isn't interested in requests that aren't | |
567 // related to a tab or requests loading a top-level document, | |
568 // those should never be blocked. | |
569 if (details.tabId == -1 || details.type == "main_frame") | |
570 return; | |
571 | |
566 // Filter out requests from non web protocols. Ideally, we'd explicitly | 572 // Filter out requests from non web protocols. Ideally, we'd explicitly |
567 // specify the protocols we are interested in (i.e. http://, https://, | 573 // specify the protocols we are interested in (i.e. http://, https://, |
568 // ws:// and wss://) with the url patterns, given below, when adding this | 574 // ws:// and wss://) with the url patterns, given below, when adding this |
569 // listener. But unfortunately, Chrome <=57 doesn't support the WebSocket | 575 // listener. But unfortunately, Chrome <=57 doesn't support the WebSocket |
570 // protocol and is causing an error if it is given. | 576 // protocol and is causing an error if it is given. |
571 let url = new URL(details.url); | 577 let url = new URL(details.url); |
Sebastian Noack
2017/04/20 19:59:48
Perhaps move this after the check below, so that w
Jon Sonesen
2017/04/20 20:04:48
Done.
| |
572 if (url.protocol != "http:" && url.protocol != "https:" && | 578 if (url.protocol != "http:" && url.protocol != "https:" && |
573 url.protocol != "ws:" && url.protocol != "wss:") | 579 url.protocol != "ws:" && url.protocol != "wss:") |
574 return; | 580 return; |
575 | 581 |
576 // The high-level code isn't interested in requests that aren't | |
577 // related to a tab or requests loading a top-level document, | |
578 // those should never be blocked. | |
579 if (details.tabId == -1 || details.type == "main_frame") | |
580 return; | |
581 | |
582 // We are looking for the frame that contains the element which | 582 // We are looking for the frame that contains the element which |
583 // has triggered this request. For most requests (e.g. images) we | 583 // has triggered this request. For most requests (e.g. images) we |
584 // can just use the request's frame ID, but for subdocument requests | 584 // can just use the request's frame ID, but for subdocument requests |
585 // (e.g. iframes) we must instead use the request's parent frame ID. | 585 // (e.g. iframes) we must instead use the request's parent frame ID. |
586 let {frameId, type} = details; | 586 let {frameId, type} = details; |
587 if (type == "sub_frame") | 587 if (type == "sub_frame") |
588 { | 588 { |
589 frameId = details.parentFrameId; | 589 frameId = details.parentFrameId; |
590 type = "SUBDOCUMENT"; | 590 type = "SUBDOCUMENT"; |
591 } | 591 } |
592 | 592 |
593 let frame = ext.getFrame(details.tabId, frameId); | 593 let frame = ext.getFrame(details.tabId, frameId); |
594 if (frame) | 594 if (frame) |
595 { | 595 { |
596 let results = ext.webRequest.onBeforeRequest._dispatch( | 596 let results = ext.webRequest.onBeforeRequest._dispatch( |
597 url, | 597 url, type.toUpperCase(), new Page({id: details.tabId}), frame |
Sebastian Noack
2017/04/20 19:59:48
Nit: Wrapping after each argument, while most argu
Jon Sonesen
2017/04/20 20:04:48
Done.
| |
598 type.toUpperCase(), | |
599 new Page({id: details.tabId}), | |
600 frame | |
601 ); | 598 ); |
602 | 599 |
603 if (results.indexOf(false) != -1) | 600 if (results.indexOf(false) != -1) |
604 return {cancel: true}; | 601 return {cancel: true}; |
605 } | 602 } |
606 }, {urls: ["<all_urls>"]}, ["blocking"]); | 603 }, {urls: ["<all_urls>"]}, ["blocking"]); |
607 | 604 |
608 | 605 |
609 /* Message passing */ | 606 /* Message passing */ |
610 | 607 |
(...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
734 ext.windows = { | 731 ext.windows = { |
735 create(createData, callback) | 732 create(createData, callback) |
736 { | 733 { |
737 chrome.windows.create(createData, createdWindow => | 734 chrome.windows.create(createData, createdWindow => |
738 { | 735 { |
739 afterTabLoaded(callback)(createdWindow.tabs[0]); | 736 afterTabLoaded(callback)(createdWindow.tabs[0]); |
740 }); | 737 }); |
741 } | 738 } |
742 }; | 739 }; |
743 }()); | 740 }()); |
LEFT | RIGHT |