OLD | NEW |
1 /* | 1 /* |
2 * This file is part of Adblock Plus <http://adblockplus.org/>, | 2 * This file is part of Adblock Plus <http://adblockplus.org/>, |
3 * Copyright (C) 2006-2014 Eyeo GmbH | 3 * Copyright (C) 2006-2014 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 var SELECTOR_GROUP_SIZE = 20; | 18 var SELECTOR_GROUP_SIZE = 20; |
19 | 19 |
20 // use Shadow DOM if available to don't mess with web pages that | |
21 // rely on the order of their own <style> tags. However | |
22 // the <shadow> element is broken in some Chrome 32 builds (#309) | |
23 // | |
24 // also Chrome 31-33 crashes in some situations on some pages when using | |
25 // ShadowDOM, e.g. when pressing tab key on Wikipedia and Facebook (#498) | |
26 // | |
27 // also we must not create the shadow root in the response callback passed | |
28 // to sendMessage(), otherwise Chrome breaks some websites (#450) | |
29 var shadow = null; | |
30 if ("webkitCreateShadowRoot" in document.documentElement && !/\bChrome\/3[1-3]\b
/.test(navigator.userAgent)) | |
31 { | |
32 shadow = document.documentElement.webkitCreateShadowRoot(); | |
33 shadow.appendChild(document.createElement("shadow")); | |
34 } | |
35 | |
36 // Sets the currently used CSS rules for elemhide filters | |
37 function setElemhideCSSRules(selectors) | |
38 { | |
39 if (selectors.length == 0) | |
40 return; | |
41 | |
42 var style = document.createElement("style"); | |
43 style.setAttribute("type", "text/css"); | |
44 | |
45 if (shadow) | |
46 { | |
47 shadow.appendChild(style); | |
48 | |
49 try | |
50 { | |
51 document.querySelector("::content"); | |
52 | |
53 for (var i = 0; i < selectors.length; i++) | |
54 selectors[i] = "::content " + selectors[i]; | |
55 } | |
56 catch (e) | |
57 { | |
58 for (var i = 0; i < selectors.length; i++) | |
59 selectors[i] = "::-webkit-distributed(" + selectors[i] + ")"; | |
60 } | |
61 } | |
62 else | |
63 { | |
64 // Try to insert the style into the <head> tag, inserting directly under the | |
65 // document root breaks dev tools functionality: | |
66 // http://code.google.com/p/chromium/issues/detail?id=178109 | |
67 (document.head || document.documentElement).appendChild(style); | |
68 } | |
69 | |
70 // WebKit apparently chokes when the selector list in a CSS rule is huge. | |
71 // So we split the elemhide selectors into groups. | |
72 for (var i = 0; selectors.length > 0; i++) | |
73 { | |
74 var selector = selectors.splice(0, SELECTOR_GROUP_SIZE).join(", "); | |
75 style.sheet.insertRule(selector + " { display: none !important; }", i); | |
76 } | |
77 } | |
78 | |
79 var typeMap = { | 20 var typeMap = { |
80 "img": "IMAGE", | 21 "img": "IMAGE", |
81 "input": "IMAGE", | 22 "input": "IMAGE", |
82 "audio": "MEDIA", | 23 "audio": "MEDIA", |
83 "video": "MEDIA", | 24 "video": "MEDIA", |
84 "frame": "SUBDOCUMENT", | 25 "frame": "SUBDOCUMENT", |
85 "iframe": "SUBDOCUMENT" | 26 "iframe": "SUBDOCUMENT" |
86 }; | 27 }; |
87 | 28 |
88 function checkCollapse(event) | 29 function checkCollapse(element) |
89 { | 30 { |
90 var target = event.target; | 31 var tag = element.localName; |
91 var tag = target.localName; | 32 if (tag in typeMap) |
92 var expectedEvent = (tag == "iframe" || tag == "frame" ? "load" : "error"); | |
93 if (tag in typeMap && event.type == expectedEvent) | |
94 { | 33 { |
95 // This element failed loading, did we block it? | 34 // This element failed loading, did we block it? |
96 var url = target.src; | 35 var url = element.src; |
97 if (!url) | 36 if (!url) |
98 return; | 37 return; |
99 | 38 |
100 ext.backgroundPage.sendMessage( | 39 ext.backgroundPage.sendMessage( |
101 { | 40 { |
102 type: "should-collapse", | 41 type: "should-collapse", |
103 url: url, | 42 url: url, |
104 mediatype: typeMap[tag] | 43 mediatype: typeMap[tag] |
105 }, | 44 }, |
106 | 45 |
107 function(response) | 46 function(response) |
108 { | 47 { |
109 if (response && target.parentNode) | 48 if (response && element.parentNode) |
110 { | 49 { |
111 // <frame> cannot be removed, doing that will mess up the frameset | 50 // <frame> cannot be removed, doing that will mess up the frameset |
112 if (tag == "frame") | 51 if (tag == "frame") |
113 target.style.setProperty("visibility", "hidden", "important"); | 52 element.style.setProperty("visibility", "hidden", "important"); |
114 else | 53 else |
115 target.style.setProperty("display", "none", "important"); | 54 element.style.setProperty("display", "none", "important"); |
116 } | 55 } |
117 } | 56 } |
118 ); | 57 ); |
119 } | 58 } |
120 } | 59 } |
121 | 60 |
| 61 function checkExceptionKey() |
| 62 { |
| 63 var attr = document.documentElement.getAttribute("data-adblockkey"); |
| 64 if (attr) |
| 65 ext.backgroundPage.sendMessage({type: "add-key-exception", token: attr}); |
| 66 } |
| 67 |
| 68 function getContentDocumentIfAboutBlank(frame) |
| 69 { |
| 70 try |
| 71 { |
| 72 var contentDocument = frame.contentDocument; |
| 73 } |
| 74 catch (e) |
| 75 { |
| 76 return null; |
| 77 } |
| 78 |
| 79 if (contentDocument.location.href == 'about:blank') |
| 80 return contentDocument; |
| 81 if (contentDocument.location.href == 'about:srcdoc') |
| 82 return contentDocument; |
| 83 |
| 84 return null; |
| 85 } |
| 86 |
122 // Converts relative to absolute URL | 87 // Converts relative to absolute URL |
123 // e.g.: foo.swf on http://example.com/whatever/bar.html | 88 // e.g.: foo.swf on http://example.com/whatever/bar.html |
124 // -> http://example.com/whatever/foo.swf | 89 // -> http://example.com/whatever/foo.swf |
125 function relativeToAbsoluteUrl(url) | 90 function relativeToAbsoluteUrl(url) |
126 { | 91 { |
127 // If URL is already absolute, don't mess with it | 92 // If URL is already absolute, don't mess with it |
128 if (!url || /^[\w\-]+:/i.test(url)) | 93 if (!url || /^[\w\-]+:/i.test(url)) |
129 return url; | 94 return url; |
130 | 95 |
131 // Leading / means absolute path | 96 // Leading / means absolute path |
132 // Leading // means network path | 97 // Leading // means network path |
133 if (url[0] == '/') | 98 if (url[0] == '/') |
134 { | 99 { |
135 if (url[1] == '/') | 100 if (url[1] == '/') |
136 return document.location.protocol + url; | 101 return document.location.protocol + url; |
137 else | 102 else |
138 return document.location.protocol + "//" + document.location.host + url; | 103 return document.location.protocol + "//" + document.location.host + url; |
139 } | 104 } |
140 | 105 |
141 // Remove filename and add relative URL to it | 106 // Remove filename and add relative URL to it |
142 var base = document.baseURI.match(/.+\//); | 107 var base = document.baseURI.match(/.+\//); |
143 if (!base) | 108 if (!base) |
144 return document.baseURI + "/" + url; | 109 return document.baseURI + "/" + url; |
145 return base[0] + url; | 110 return base[0] + url; |
146 } | 111 } |
147 | 112 |
148 function init() | 113 function init(document) |
149 { | 114 { |
150 // Make sure this is really an HTML page, as Chrome runs these scripts on just
about everything | 115 var canUseShadow = "webkitCreateShadowRoot" in document.documentElement; |
151 if (!(document.documentElement instanceof HTMLElement)) | 116 var runsContentScriptsOnAboutBlank = true; |
152 return; | |
153 | 117 |
154 document.addEventListener("error", checkCollapse, true); | 118 var match = navigator.userAgent.match(/\bChrome\/(\d+)/); |
155 document.addEventListener("load", checkCollapse, true); | 119 if (match) |
| 120 { |
| 121 var chromeVersion = parseInt(match[1]); |
156 | 122 |
157 var attr = document.documentElement.getAttribute("data-adblockkey"); | 123 // the <shadow> element is ignored in Chrome 32 (#309). Also Chrome 31-33 |
158 if (attr) | 124 // crashes in some situations on some pages when using shadow DOM (#498). |
159 ext.backgroundPage.sendMessage({type: "add-key-exception", token: attr}); | 125 // So we must not use Shadow DOM on those versions of Chrome. |
| 126 if (chromeVersion >= 31 && chromeVersion <= 33) |
| 127 canUseShadow = false; |
| 128 |
| 129 // prior to Chrome 37, content scripts don't run on about:blank |
| 130 // and about:srcdoc. So we have to apply element hiding and collapsing |
| 131 // from the parent frame, when in-line frames are loaded. |
| 132 if (chromeVersion < 37) |
| 133 runsContentScriptsOnAboutBlank = false; |
| 134 } |
| 135 |
| 136 // use Shadow DOM if available to don't mess with web pages that |
| 137 // rely on the order of their own <style> tags (#309). However we |
| 138 // must not create the shadow root in the response callback passed |
| 139 // to sendMessage(), otherwise Chrome breaks some websites (#450). |
| 140 if (canUseShadow) |
| 141 { |
| 142 var shadow = document.documentElement.webkitCreateShadowRoot(); |
| 143 shadow.appendChild(document.createElement("shadow")); |
| 144 } |
| 145 |
| 146 // Sets the currently used CSS rules for elemhide filters |
| 147 var setElemhideCSSRules = function(selectors) |
| 148 { |
| 149 if (selectors.length == 0) |
| 150 return; |
| 151 |
| 152 var style = document.createElement("style"); |
| 153 style.setAttribute("type", "text/css"); |
| 154 |
| 155 if (canUseShadow) |
| 156 { |
| 157 shadow.appendChild(style); |
| 158 |
| 159 try |
| 160 { |
| 161 document.querySelector("::content"); |
| 162 |
| 163 for (var i = 0; i < selectors.length; i++) |
| 164 selectors[i] = "::content " + selectors[i]; |
| 165 } |
| 166 catch (e) |
| 167 { |
| 168 for (var i = 0; i < selectors.length; i++) |
| 169 selectors[i] = "::-webkit-distributed(" + selectors[i] + ")"; |
| 170 } |
| 171 } |
| 172 else |
| 173 { |
| 174 // Try to insert the style into the <head> tag, inserting directly under t
he |
| 175 // document root breaks dev tools functionality: |
| 176 // http://code.google.com/p/chromium/issues/detail?id=178109 |
| 177 (document.head || document.documentElement).appendChild(style); |
| 178 } |
| 179 |
| 180 var setRules = function() |
| 181 { |
| 182 // The sheet property might not exist yet if the |
| 183 // <style> element was created for a sub frame |
| 184 if (!style.sheet) |
| 185 { |
| 186 setTimeout(setRules, 0); |
| 187 return; |
| 188 } |
| 189 |
| 190 // WebKit apparently chokes when the selector list in a CSS rule is huge. |
| 191 // So we split the elemhide selectors into groups. |
| 192 for (var i = 0; selectors.length > 0; i++) |
| 193 { |
| 194 var selector = selectors.splice(0, SELECTOR_GROUP_SIZE).join(", "); |
| 195 style.sheet.insertRule(selector + " { display: none !important; }", i); |
| 196 } |
| 197 }; |
| 198 |
| 199 setRules(); |
| 200 }; |
| 201 |
| 202 document.addEventListener("error", function(event) |
| 203 { |
| 204 checkCollapse(event.target); |
| 205 }, true); |
| 206 |
| 207 document.addEventListener("load", function(event) |
| 208 { |
| 209 if (/^i?frame$/.test(event.target.localName)) |
| 210 { |
| 211 checkCollapse(event.target); |
| 212 |
| 213 if (!runsContentScriptsOnAboutBlank) |
| 214 { |
| 215 var contentDocument = getContentDocumentIfAboutBlank(event.target); |
| 216 if (contentDocument) |
| 217 { |
| 218 init(contentDocument); |
| 219 |
| 220 for (var tagName in typeMap) |
| 221 Array.prototype.forEach.call(contentDocument.getElementsByTagName(ta
gName), checkCollapse); |
| 222 } |
| 223 } |
| 224 } |
| 225 }, true); |
160 | 226 |
161 ext.backgroundPage.sendMessage({type: "get-selectors"}, setElemhideCSSRules); | 227 ext.backgroundPage.sendMessage({type: "get-selectors"}, setElemhideCSSRules); |
162 } | 228 } |
163 | 229 |
164 // In Chrome 18 the document might not be initialized yet | 230 if (document.documentElement instanceof HTMLElement) |
165 if (document.documentElement) | 231 { |
166 init(); | 232 checkExceptionKey(); |
167 else | 233 init(document); |
168 window.setTimeout(init, 0); | 234 } |
OLD | NEW |