Left: | ||
Right: |
OLD | NEW |
---|---|
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-2016 Eyeo GmbH | 3 * Copyright (C) 2006-2016 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 |
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | 11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
12 * GNU General Public License for more details. | 12 * GNU General Public License for more details. |
13 * | 13 * |
14 * You should have received a copy of the GNU General Public License | 14 * You should have received a copy of the GNU General Public License |
15 * along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>. | 15 * along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>. |
16 */ | 16 */ |
17 | 17 |
18 (function() { | 18 (function() { |
19 if (document.domain != "www.youtube.com") | 19 if (document.domain != "www.youtube.com") |
20 return; | 20 return; |
21 | 21 |
22 var usingContentBlockerAPI = true; | |
23 try | |
24 { | |
25 if (safari.self.tab.canLoad(beforeLoadEvent, | |
26 {category: "request", | |
27 payload: {type: "prefs.get", | |
28 key: "safariContentBlocker"}}) != tru e) | |
29 usingContentBlockerAPI = false; | |
30 } | |
31 catch (e) | |
32 { } | |
Sebastian Noack
2016/05/18 11:16:33
Nit: The closing brace should go on a new line as
kzar
2016/05/18 11:32:08
Done.
| |
33 | |
34 if (usingContentBlockerAPI) | |
35 return; | |
36 | |
22 if (ext.backgroundPage.sendMessageSync({type: "filters.isPageWhitelisted"})) | 37 if (ext.backgroundPage.sendMessageSync({type: "filters.isPageWhitelisted"})) |
23 return; | 38 return; |
24 | 39 |
25 var badArgumentsRegex = /^((.*_)?(ad|ads|afv|adsense)(_.*)?|(ad3|st)_module|pr erolls|interstitial|infringe|iv_cta_url)$/; | 40 var badArgumentsRegex = /^((.*_)?(ad|ads|afv|adsense)(_.*)?|(ad3|st)_module|pr erolls|interstitial|infringe|iv_cta_url)$/; |
26 | 41 |
27 function rewriteFlashvars(flashvars) | 42 function rewriteFlashvars(flashvars) |
28 { | 43 { |
29 var pairs = flashvars.split("&"); | 44 var pairs = flashvars.split("&"); |
30 for (var i = 0; i < pairs.length; i++) | 45 for (var i = 0; i < pairs.length; i++) |
31 if (badArgumentsRegex.test(pairs[i].split("=")[0])) | 46 if (badArgumentsRegex.test(pairs[i].split("=")[0])) |
32 pairs.splice(i--, 1); | 47 pairs.splice(i--, 1); |
33 return pairs.join("&"); | 48 return pairs.join("&"); |
34 } | 49 } |
35 | 50 |
36 function patchPlayer(player) | 51 function patchPlayer(player) |
37 { | 52 { |
38 var newPlayer = player.cloneNode(true); | 53 var newPlayer = player.cloneNode(true); |
39 var flashvarsChanged = false; | 54 var flashvarsChanged = false; |
40 | 55 |
41 var flashvars = newPlayer.getAttribute("flashvars"); | 56 var flashvars = newPlayer.getAttribute("flashvars"); |
42 if (flashvars) | 57 if (flashvars) |
43 { | 58 { |
44 var newFlashvars = rewriteFlashvars(flashvars); | 59 var newFlashvars = rewriteFlashvars(flashvars); |
45 if (flashvars != newFlashvars) | 60 if (flashvars != newFlashvars) |
46 { | 61 { |
(...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
156 config.args = rawConfig.args; | 171 config.args = rawConfig.args; |
157 } | 172 } |
158 } | 173 } |
159 }); | 174 }); |
160 | 175 |
161 ytplayer.config = rawYtplayer.config; | 176 ytplayer.config = rawYtplayer.config; |
162 } | 177 } |
163 }); | 178 }); |
164 }, badArgumentsRegex); | 179 }, badArgumentsRegex); |
165 })(); | 180 })(); |
OLD | NEW |