1
0
mirror of https://github.com/gorhill/uBlock.git synced 2024-09-02 09:09:38 +02:00
This commit is contained in:
gorhill 2015-06-10 11:30:57 -04:00
parent d08c713263
commit 5c53605269
5 changed files with 22 additions and 3 deletions

View File

@ -2,7 +2,7 @@
b8fd6f6a836d34e0629dca07424d7bd8 assets/ublock/privacy.txt
841bde1d6f0e702554d2d858da55603f assets/ublock/filters.txt
c9c5cc56bec563bc1885847f925b9be2 assets/ublock/mirror-candidates.txt
4bd4f0a6d79c34028c1de7bf3bdc5943 assets/ublock/filter-lists.json
343afa7da2abf47c258355815f732ce4 assets/ublock/filter-lists.json
94c0a3eab74c42783855f07b22a429cf assets/thirdparties/home.fredfiber.no/langsholt/adblock.txt
fc30b0ab9c531f8f95a288d165f01634 assets/thirdparties/www.zoso.ro/pages/rolist.txt
72373316d0e7ad22604d307c2d93e7cc assets/thirdparties/adblock.gardar.net/is.abp.txt

View File

@ -239,7 +239,8 @@
"title": "Anti-Adblock Killer | Reek",
"group": "ads",
"homeURL": "https://raw.githubusercontent.com/reek/anti-adblock-killer/master/anti-adblock-killer-filters.txt",
"supportURL": "https://github.com/reek/anti-adblock-killer"
"supportURL": "https://github.com/reek/anti-adblock-killer",
"instructionURL": "https://github.com/reek/anti-adblock-killer#instruction"
},
"raw.githubusercontent.com/szpeter80/hufilter/master/hufilter.txt": {
"off": true,

View File

@ -42,6 +42,7 @@
<li class="listEntry">
<input type="checkbox">
<a type="text/plain" target="_blank" href=""></a>
<a class="fa" style="display: none;" target="_blank">&#xf05a;</a>
<a href="" style="display: none;" target="_blank"></a>: <!--
--><span class="dim"></span><!--
--><span class="status unsecure" style="display: none;">http</span><!--

View File

@ -56,6 +56,17 @@ li.listEntry > * {
unicode-bidi: embed;
}
li.listEntry > a:nth-of-type(2) {
font-size: 16px;
opacity: 0.7;
}
li.listEntry > a:nth-of-type(2),
li.listEntry > a:nth-of-type(2):visited {
color: mediumblue;
}
li.listEntry > a:nth-of-type(2):hover {
opacity: 1;
}
li.listEntry > a:nth-of-type(3) {
font-size: 13px;
opacity: 0.5;
}

View File

@ -103,8 +103,14 @@ var renderFilterLists = function() {
elem.attr('data-listkey', listKey);
elem.text(listNameFromListKey(listKey) + '\u200E');
if ( entry.supportName ) {
if ( entry.instructionURL ) {
elem = li.descendants('a:nth-of-type(2)');
elem.attr('href', entry.instructionURL);
elem.css('display', '');
}
if ( entry.supportName ) {
elem = li.descendants('a:nth-of-type(3)');
elem.attr('href', entry.supportURL);
elem.text('(' + entry.supportName + ')');
elem.css('display', '');