wakakusakatuya / adblock-plus-japanese-filter

Automatically exported from code.google.com/p/adblock-plus-japanese-filter
0 stars 0 forks source link

Dictionary part in google dictionary was blocked #1

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
problem:

it block the dictionary part in google dictionary (english dictionary)
[http://www.google.com/dictionary]

英語の辞書の部分は削除されますた。

Original issue reported on code.google.com by edogawak...@gmail.com on 6 Feb 2010 at 6:56

GoogleCodeExporter commented 8 years ago
報告ありがとうございます
(Thanx for reporting a bug)
Google Dictionary で id 
に「pr-root」を試用している為、以下のルールが誤作動した�
��うです
(The following filter had a false positive in Google Dictionary.)
##*[id^="pr-"]

条件末尾に以下を追加することで対処しました
(Now, the problem is fixed, adding the following more conditions.)
:not(*[id="pr-root"][class^="dct-e"])

現在はこうなってます
(Finally, the filter is fixed like...)
##*[id^="pr-"]:not(*[id="pr-root"][class^="dct-e"])

以上です

Original comment by k2ja...@gmail.com on 14 Feb 2010 at 10:24