No commit message
6
public/css/animate.min.css
vendored
Normal file
4879
public/css/hover.css
Normal file
68
public/css/notification.css
Normal file
@ -0,0 +1,68 @@
|
||||
html,
|
||||
body {
|
||||
margin: 0 !important;
|
||||
padding: 0 !important;
|
||||
background-color: transparent !important;
|
||||
}
|
||||
a {
|
||||
color: #DC143C;
|
||||
text-decoration: none;
|
||||
-webkit-transition: all .3s;
|
||||
transition: all .3s;
|
||||
}
|
||||
a:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
#aak-notice {
|
||||
font-family: arial;
|
||||
color: #000;
|
||||
font-size: 1em;
|
||||
border: 1px solid #999;
|
||||
border-radius: 3px;
|
||||
width: 350px;
|
||||
max-width: 350px;
|
||||
min-height: 100px;
|
||||
top: 0;
|
||||
left: 0;
|
||||
line-height: 1.2;
|
||||
z-index: 999999;
|
||||
position: fixed;
|
||||
display: block;
|
||||
margin: 0px;
|
||||
background-color: #fff;
|
||||
background-image: url(//raw.githubusercontent.com/reek/anti-adblock-killer/master/anti-adblock-killer-icon.png);
|
||||
background-repeat: no-repeat;
|
||||
background-position: 8px center;
|
||||
background-size: 64px;
|
||||
}
|
||||
#aak-notice-content {
|
||||
background-color: #fff;
|
||||
width: 262px;
|
||||
height: 80px;
|
||||
min-height: 80px;
|
||||
overflow-x: hidden;
|
||||
overflow-y: auto;
|
||||
margin: 0px 10px 10px 80px;
|
||||
padding: 0;
|
||||
text-align: left;
|
||||
vertical-align: middle;
|
||||
}
|
||||
#aak-notice-close {
|
||||
background-color: #fff;
|
||||
text-align: right;
|
||||
cursor: pointer;
|
||||
color: #999;
|
||||
font-size: 1.5em;
|
||||
font-weight: bold;
|
||||
display: block;
|
||||
line-height: 0px;
|
||||
padding: 15px 7px 5px 0px;
|
||||
-webkit-transition: all .3s;
|
||||
transition: all .3s
|
||||
}
|
||||
#aak-notice-close:before {
|
||||
content: "×";
|
||||
}
|
||||
#aak-notice-close:hover {
|
||||
color: #DC143C;
|
||||
}
|
440
public/css/style.css
Normal file
@ -0,0 +1,440 @@
|
||||
@charset=utf-8;
|
||||
@import url(//fonts.googleapis.com/css?family=Oswald);
|
||||
|
||||
html {
|
||||
background-color: #DC143C;
|
||||
}
|
||||
|
||||
body {
|
||||
font-family: "Oswald", Arial, Tahoma;
|
||||
font-size: 1em;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
h1 {
|
||||
background: url("//raw.githubusercontent.com/reek/anti-adblock-killer/master/anti-adblock-killer-icon.png") no-repeat 50px 10px;
|
||||
background-size: 48px 48px;
|
||||
background-color: #DC143C;
|
||||
color: #fff;
|
||||
padding: 10px 110px;
|
||||
font-size: 2em;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
|
||||
h1 a {
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
h2 {
|
||||
font-weight: normal;
|
||||
color: #DC143C;
|
||||
margin: 3px 0px;
|
||||
font-size: 1.9em;
|
||||
}
|
||||
|
||||
h3 {
|
||||
font-weight: normal;
|
||||
color: #DC143C;
|
||||
padding: 5px 20px;
|
||||
margin: 3px 0px;
|
||||
background-color: transparent;
|
||||
text-transform: uppercase;
|
||||
text-align: left;
|
||||
border-bottom: 3px solid #DC143C;
|
||||
font-size: 1.2em;
|
||||
}
|
||||
|
||||
h5 {
|
||||
font-weight: normal;
|
||||
color: #000;
|
||||
background-color: transparent;
|
||||
text-transform: uppercase;
|
||||
text-align: left;
|
||||
text-decoration: none;
|
||||
font-size: 1em;
|
||||
border-bottom: 2px solid #000;
|
||||
}
|
||||
|
||||
a {
|
||||
text-decoration: none;
|
||||
color: #DC143C;
|
||||
}
|
||||
|
||||
ul {
|
||||
list-style-type: square;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
input[type=checkbox].css-checkbox {
|
||||
position: absolute;
|
||||
z-index: -1000;
|
||||
left: -1000px;
|
||||
overflow: hidden;
|
||||
clip: rect(0 0 0 0);
|
||||
height: 1px;
|
||||
width: 1px;
|
||||
margin: -1px;
|
||||
padding: 0;
|
||||
border: 0;
|
||||
}
|
||||
|
||||
input[type=checkbox].css-checkbox + label.css-label {
|
||||
padding-left: 22px;
|
||||
height: 17px;
|
||||
display: inline-block;
|
||||
line-height: 17px;
|
||||
background-repeat: no-repeat;
|
||||
background-position: 0 0;
|
||||
font-size: 17px;
|
||||
vertical-align: middle;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
input[type=checkbox].css-checkbox:checked + label.css-label {
|
||||
background-position: 0 -17px;
|
||||
}
|
||||
|
||||
label.css-label {
|
||||
background-image: url(../images/checkboxes.png);
|
||||
-webkit-touch-callout: none;
|
||||
-webkit-user-select: none;
|
||||
-khtml-user-select: none;
|
||||
-moz-user-select: none;
|
||||
-ms-user-select: none;
|
||||
user-select: none;
|
||||
}
|
||||
|
||||
/* Mozilla based browsers */
|
||||
::-moz-selection {
|
||||
background-color: #DC143C;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
/* Works in Safari */
|
||||
::selection {
|
||||
background-color: #DC143C;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.red {
|
||||
color: #DC143C;
|
||||
}
|
||||
|
||||
.grey {
|
||||
color: #888;
|
||||
}
|
||||
|
||||
.smallest {
|
||||
font-size: .5em;
|
||||
}
|
||||
|
||||
.small {
|
||||
font-size: .8em;
|
||||
}
|
||||
|
||||
.normal {
|
||||
font-size: 1em;
|
||||
}
|
||||
|
||||
.big {
|
||||
font-size: 1.3em;
|
||||
}
|
||||
|
||||
.bigest {
|
||||
font-size: 1.5em;
|
||||
}
|
||||
|
||||
.center {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.left {
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.right {
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
.italic {
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
.code {
|
||||
color: #888;
|
||||
padding:0 2px;
|
||||
background-color: #eee;
|
||||
border: 1px solid #ddd;
|
||||
}
|
||||
|
||||
.notice {
|
||||
color: #F8D0D8;
|
||||
margin: 3% 0%;
|
||||
padding: 2%;
|
||||
background-color: #FFF0F3;
|
||||
border: 1px solid #DC143C;
|
||||
}
|
||||
|
||||
.fieldset {
|
||||
color: #666;
|
||||
padding: 10px;
|
||||
background-color: #fff;
|
||||
border: 1px solid #ddd;
|
||||
margin: 10px 0;
|
||||
}
|
||||
|
||||
.content {
|
||||
padding: 10px 20px;
|
||||
min-height: 500px;
|
||||
}
|
||||
|
||||
.header {
|
||||
background-color: #DC143C;
|
||||
color: #fff;
|
||||
padding-top: 15%;
|
||||
min-height: 650px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.brand {
|
||||
font-size: 3em;
|
||||
}
|
||||
|
||||
.slogan {
|
||||
font-size: 1.5em;
|
||||
}
|
||||
|
||||
.section {
|
||||
margin: 0px 50px 0px 50px;
|
||||
background-color: #fff;
|
||||
color: #000;
|
||||
}
|
||||
|
||||
.section::before {
|
||||
content: "";
|
||||
display: block;
|
||||
background-color: #DC143C;
|
||||
background-image: url("../images/cut-left.png");
|
||||
background-position: 0 0;
|
||||
background-repeat: no-repeat;
|
||||
background-size: 100% 30px;
|
||||
height: 30px;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.section::after {
|
||||
content: "";
|
||||
display: block;
|
||||
background-color: #DC143C;
|
||||
background-image: url("../images/cut-bottom-right.png");
|
||||
background-position: 0 0;
|
||||
background-repeat: no-repeat;
|
||||
background-size: 100% 30px;
|
||||
height: 30px;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.button-alt {
|
||||
font-size: 16px;
|
||||
border: 2px solid #fff;
|
||||
background-color: #DC143C;
|
||||
color: #fff;
|
||||
padding: 8px 16px;
|
||||
text-decoration: none;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.button-alt:hover {
|
||||
background-color: #fff;
|
||||
color: #DC143C;
|
||||
text-decoration: none;
|
||||
border: 2px solid #fff;
|
||||
}
|
||||
|
||||
.button {
|
||||
font-size: 16px;
|
||||
border: 2px solid #DC143C;
|
||||
background-color: #fff;
|
||||
color: #DC143C;
|
||||
padding: 8px 16px;
|
||||
text-decoration: none;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.button:hover {
|
||||
color: #fff;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.field {
|
||||
padding: 10px 20px;
|
||||
width: 40%;
|
||||
border: 2px solid #ddd;
|
||||
color: #666;
|
||||
-webkit-box-sizing: border-box;
|
||||
-moz-box-sizing: border-box;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
.field:focus,
|
||||
.filed-empty {
|
||||
color: #000;
|
||||
border: 2px solid #DC143C;
|
||||
}
|
||||
|
||||
.field-list {
|
||||
color: #DC143C;
|
||||
font-size: 16px;
|
||||
padding: 10px 20px;
|
||||
width: 50%;
|
||||
border: 2px solid #DC143C;
|
||||
}
|
||||
|
||||
.footer {
|
||||
background-color: #333;
|
||||
color: #999;
|
||||
padding: 20px 50px;
|
||||
margin-top: 50px;
|
||||
height:200px;
|
||||
}
|
||||
|
||||
.listBox {
|
||||
|
||||
}
|
||||
|
||||
.listFloat {
|
||||
float:left;
|
||||
width:100px;
|
||||
list-style-type: none;
|
||||
}
|
||||
|
||||
.listTitle {
|
||||
color: #fff;
|
||||
text-decoration:underline;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
|
||||
.listLink {
|
||||
color: #999;
|
||||
}
|
||||
|
||||
.listLink:hover {
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.copyright {
|
||||
text-align:center;
|
||||
}
|
||||
|
||||
/* #C61236 #FCE8EC #DC143C */
|
||||
#menu {
|
||||
top: 10px;
|
||||
left: 0px;
|
||||
position: fixed;
|
||||
z-index: 10;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
list-style: none;
|
||||
}
|
||||
|
||||
#menu .menu-wrap {
|
||||
width: 50px;
|
||||
}
|
||||
|
||||
#menu .menu-wrap:hover {
|
||||
width: 150px;
|
||||
}
|
||||
|
||||
#menu .menu-icon {
|
||||
padding: 5px;
|
||||
display: block;
|
||||
text-decoration: none;
|
||||
background-color: #DC143C;
|
||||
height: 27px;
|
||||
width: 40px;
|
||||
}
|
||||
|
||||
#menu .menu-icon:hover {
|
||||
background: rgba(0,0,0,.1);
|
||||
}
|
||||
|
||||
#menu .menu-icon .line {
|
||||
background-color: #fff;
|
||||
border-radius: 1px;
|
||||
height: 6px;
|
||||
margin-bottom: 4px;
|
||||
width: 40px;
|
||||
}
|
||||
|
||||
#menu .menu-list {
|
||||
padding: 0;
|
||||
margin: 5px 0;
|
||||
list-style: none;
|
||||
text-align: left;
|
||||
transition: all .5s;
|
||||
}
|
||||
|
||||
#menu .menu-list li {
|
||||
max-height: 0;
|
||||
overflow: hidden;
|
||||
background: #DC143C;
|
||||
border: none;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
#menu .menu-list li a {
|
||||
margin: 5px;
|
||||
padding: 5px 10px;
|
||||
color: #fff;
|
||||
display: block;
|
||||
width: 150px;
|
||||
border-left: 6px solid #DC143C;
|
||||
}
|
||||
|
||||
#menu .menu-list li a:hover {
|
||||
background: rgba(0,0,0,.1);
|
||||
color: white;
|
||||
border-left: 6px solid white;
|
||||
}
|
||||
|
||||
#menu .menu-wrap:hover li {
|
||||
max-height: 15em;
|
||||
}
|
||||
|
||||
#aak-settings-box {
|
||||
display: none;
|
||||
}
|
||||
|
||||
#alert {
|
||||
/* some styles to position the modal at the center of the page */
|
||||
display: none;
|
||||
overflow: hidden;
|
||||
position: fixed;
|
||||
top: 50%;
|
||||
left: 50%;
|
||||
width: 300px;
|
||||
height: 200px;
|
||||
margin-left: -150px;
|
||||
margin-top: -100px;
|
||||
background-color: #fff;
|
||||
border: 5px solid #fff;
|
||||
text-align: center;
|
||||
/* needed styles for the overlay */
|
||||
z-index: 10;
|
||||
/* keep on top of other elements on the page */
|
||||
outline: 9999px solid rgba(0,0,0,0.5);
|
||||
}
|
||||
|
||||
#alert-content {
|
||||
overflow: auto;
|
||||
margin: 0 10px;
|
||||
padding-top: 10px;
|
||||
width: 280px;
|
||||
background-color: #fff;
|
||||
height: 100px;
|
||||
}
|
||||
|
||||
#howto {
|
||||
display:none;
|
||||
}
|
BIN
public/images/adblock_resources.png
Normal file
After Width: | Height: | Size: 65 KiB |
BIN
public/images/adblockplus_resources.png
Normal file
After Width: | Height: | Size: 43 KiB |
BIN
public/images/anti-adblock-killer-player-fw.png
Normal file
After Width: | Height: | Size: 72 KiB |
BIN
public/images/bait.png
Normal file
After Width: | Height: | Size: 218 B |
BIN
public/images/bg_hr.png
Normal file
After Width: | Height: | Size: 943 B |
BIN
public/images/bitcoin.png
Normal file
After Width: | Height: | Size: 809 B |
BIN
public/images/blacktocat.png
Normal file
After Width: | Height: | Size: 1.4 KiB |
BIN
public/images/body-bg.png
Normal file
After Width: | Height: | Size: 8.7 KiB |
BIN
public/images/checkboxes.png
Normal file
After Width: | Height: | Size: 348 B |
BIN
public/images/chrome.png
Normal file
After Width: | Height: | Size: 906 B |
BIN
public/images/close.png
Normal file
After Width: | Height: | Size: 1.6 KiB |
BIN
public/images/close16.png
Normal file
After Width: | Height: | Size: 246 B |
BIN
public/images/cut-bottom-right.png
Normal file
After Width: | Height: | Size: 2.5 KiB |
BIN
public/images/cut-left.png
Normal file
After Width: | Height: | Size: 1020 B |
BIN
public/images/dogecoin.png
Normal file
After Width: | Height: | Size: 790 B |
BIN
public/images/donate_circle_32.png
Normal file
After Width: | Height: | Size: 825 B |
BIN
public/images/download.png
Normal file
After Width: | Height: | Size: 570 B |
BIN
public/images/extensions.png
Normal file
After Width: | Height: | Size: 54 KiB |
BIN
public/images/firefox.png
Normal file
After Width: | Height: | Size: 947 B |
BIN
public/images/flattr.png
Normal file
After Width: | Height: | Size: 863 B |
BIN
public/images/github_circle_32.png
Normal file
After Width: | Height: | Size: 49 KiB |
BIN
public/images/greasemonkey.png
Normal file
After Width: | Height: | Size: 1000 B |
BIN
public/images/header-layer.png
Normal file
After Width: | Height: | Size: 86 KiB |
BIN
public/images/header.png
Normal file
After Width: | Height: | Size: 19 KiB |
BIN
public/images/header_twitter.png
Normal file
After Width: | Height: | Size: 88 KiB |
BIN
public/images/highlight-bg.jpg
Normal file
After Width: | Height: | Size: 33 KiB |
BIN
public/images/hr.png
Normal file
After Width: | Height: | Size: 1.0 KiB |
BIN
public/images/icon.png
Normal file
After Width: | Height: | Size: 6.9 KiB |
BIN
public/images/icon_download.png
Normal file
After Width: | Height: | Size: 1.1 KiB |
BIN
public/images/ie.png
Normal file
After Width: | Height: | Size: 943 B |
BIN
public/images/litecoin.png
Normal file
After Width: | Height: | Size: 280 B |
BIN
public/images/logo_v1_layers.png
Normal file
After Width: | Height: | Size: 206 KiB |
BIN
public/images/logo_v2_layers.png
Normal file
After Width: | Height: | Size: 101 KiB |
BIN
public/images/msedge.png
Normal file
After Width: | Height: | Size: 891 B |
BIN
public/images/ninjakit.png
Normal file
After Width: | Height: | Size: 590 B |
BIN
public/images/octocat-icon.png
Normal file
After Width: | Height: | Size: 1.6 KiB |
BIN
public/images/opera.png
Normal file
After Width: | Height: | Size: 805 B |
BIN
public/images/paypal.png
Normal file
After Width: | Height: | Size: 845 B |
BIN
public/images/safari.png
Normal file
After Width: | Height: | Size: 1.0 KiB |
BIN
public/images/sprite_download.png
Normal file
After Width: | Height: | Size: 16 KiB |
BIN
public/images/tampermonkey.png
Normal file
After Width: | Height: | Size: 778 B |
BIN
public/images/tar-gz-icon.png
Normal file
After Width: | Height: | Size: 1.6 KiB |
BIN
public/images/test.png
Normal file
After Width: | Height: | Size: 75 KiB |
BIN
public/images/twitter.png
Normal file
After Width: | Height: | Size: 715 B |
BIN
public/images/twitter_circle_32.png
Normal file
After Width: | Height: | Size: 49 KiB |
BIN
public/images/ublock_resources.png
Normal file
After Width: | Height: | Size: 79 KiB |
BIN
public/images/userscripts.png
Normal file
After Width: | Height: | Size: 28 KiB |
BIN
public/images/zip-icon.png
Normal file
After Width: | Height: | Size: 1.6 KiB |
@ -1 +1,323 @@
|
||||
test
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
|
||||
<link rel="stylesheet" href="css/style.css">
|
||||
|
||||
<!-- Animate.css -->
|
||||
<!-- //daneden.github.io/animate.css/ -->
|
||||
<link rel="stylesheet" href="css/animate.min.css">
|
||||
|
||||
<!-- Hover.css -->
|
||||
<!-- //ianlunn.github.io/Hover/ -->
|
||||
<link rel="stylesheet" href="css/hover.css">
|
||||
|
||||
<!-- JavaScript Library jQuery -->
|
||||
<!-- //jquery.com/ -->
|
||||
<script src="//code.jquery.com/jquery.min.js"></script>
|
||||
|
||||
<!--<script src="k2Uw7isHrMm5JXP1Vwdxc567ZKc1aZ4I.js"></script>-->
|
||||
|
||||
<title>Anti-Adblock Killer Continued</title>
|
||||
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
||||
<ul id="menu">
|
||||
<li class="menu-wrap">
|
||||
<a href="#" class="menu-icon">
|
||||
<div class="line"></div>
|
||||
<div class="line"></div>
|
||||
<div class="line"></div>
|
||||
</a>
|
||||
<ul class="menu-list">
|
||||
<li><a href="#about">About</a></li>
|
||||
<li><a href="#userscript">UserScript</a></li>
|
||||
<li><a href="#filterlist">FilterList</a></li>
|
||||
<li><a href="#contact">Contact</a></li>
|
||||
<li><a href="#settings">Settings</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
|
||||
|
||||
|
||||
<header class="header">
|
||||
<a name="top"></a>
|
||||
<div class="logo animated bounceInDown"><img src="images/icon.png" />
|
||||
</div>
|
||||
<div class="brand animated flipInY">Anti-Adblock Killer Continued</div>
|
||||
<div class="slogan animated flipInX">Let's revive our beloved Anti-Adblock Killer!</div>
|
||||
<br>
|
||||
<p class="animated bounce">
|
||||
<a href="https://gitlab.com/xuhaiyang1234/AAK-Cont/tree/master" class="button-alt hvr-wobble-vertical">GitLab</a>
|
||||
<!--
|
||||
<a href="//greasyfork.org/scripts/735-anti-adblock-killer-reek" class="button-alt hvr-wobble-vertical">Greasefork</a> <a href="//openuserjs.org/scripts/reek/Anti-Adblock_Killer_Reek" class="button-alt hvr-wobble-vertical">Openuserjs</a>
|
||||
-->
|
||||
</p>
|
||||
</header>
|
||||
|
||||
|
||||
|
||||
<h1 class="animated bounceInLeft"><a name="about" href="#about">About</a></h1>
|
||||
<section class="section animated bounceInRight">
|
||||
<div class="content">
|
||||
|
||||
<h3>Anti-Adblock Killer Continued</h3>
|
||||
<div class="fieldset big">
|
||||
<p>
|
||||
Helps you keep your Ad-Blocker active, when you visit a website and it asks you to disable.
|
||||
</p>
|
||||
<p>
|
||||
Composed of a user script <a href="#userscript">«AakScript»</a> written in javascript and a filter list <a href="#filterlist">«AakList»</a> using the same syntax as lists AdBlock and AdBlock Plus, the two are complementary and unlock different website.
|
||||
</p>
|
||||
<p>
|
||||
You can report a issue or contribute to the project by visiting the <a href="https://gitlab.com/xuhaiyang1234/AAK-Cont/tree/master">«GitLab»</a> repository.
|
||||
</p>
|
||||
</div>
|
||||
<h3>Note</h3>
|
||||
<div class="fieldset">
|
||||
THIS IS NOT A UNIVERSAL SOLUTION FOR ALL ANTI ADBLOCK SCRIPTS
|
||||
</div>
|
||||
<div class="fieldset center">
|
||||
<p><a class="big" href="#userscript">Ready to install »</a></p>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</section>
|
||||
|
||||
|
||||
|
||||
<h1 class="animated bounceInLeft"><a name="userscript" href="#userscript">UserScript</a></h1>
|
||||
<section class="section animated bounceInRight">
|
||||
<div class="content">
|
||||
<h3>Please head over to <a href="https://gitlab.com/xuhaiyang1234/AAK-Cont/tree/master">GitLab</a> for install instructions</h3>
|
||||
<!--
|
||||
<h3>Step 1</h3>
|
||||
<div class="fieldset center">
|
||||
<h2>Browser (Script-Manager)</h2>
|
||||
<p>Necessary to execute <b>AakScript</b></p>
|
||||
<p><a class="button hvr-bounce-to-bottom" title="Firefox" href="//addons.mozilla.org/en-US/firefox/addon/greasemonkey/">Greasemonkey</a> or <a class="button hvr-bounce-to-bottom" title="Chrome, Opera, Safari" href="//tampermonkey.net/">Tampermonkey</a></p>
|
||||
</div>
|
||||
|
||||
<div class="fieldset center">
|
||||
<h2>Anti-Adblock Killer (Script)</h2>
|
||||
<p><a class="button hvr-bounce-to-bottom" href="https://example.com/reek/anti-adblock-killer/master/anti-adblock-killer.user.js">Install</a></p>
|
||||
</div>
|
||||
|
||||
<div class="fieldset center">
|
||||
<p><a class="big" href="#filterlist">Step 2 »</a></p>
|
||||
</div>-->
|
||||
|
||||
<h3>Compatible</h3>
|
||||
<div class="fieldset center">
|
||||
<p>Firefox, Chrome, Opera, Safari, Edge</p>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</section>
|
||||
|
||||
|
||||
|
||||
<h1 class="animated bounceInLeft"><a name="filterlist" href="#filterlist">FilterList</a></h1>
|
||||
<section class="section animated bounceInRight">
|
||||
<div class="content">
|
||||
<h3>Please head over to <a href="https://gitlab.com/xuhaiyang1234/AAK-Cont/tree/master">GitLab</a> for install instructions</h3>
|
||||
|
||||
<!--
|
||||
<h3>Step 2</h3>
|
||||
<div class="fieldset center">
|
||||
<h2>Browser (Ad-Blocker)</h2>
|
||||
<p>Necessary to execute <b>AakList</b></p>
|
||||
<p><a class="button hvr-bounce-to-bottom" href="//getadblock.com/">AdBlock</a> or <a class="button hvr-bounce-to-bottom" href="//adblockplus.org/">AdBlock Plus</a> or <a class="button hvr-bounce-to-bottom" href="//github.com/gorhill/uBlock">uBlock Origin</a> or <a class="button hvr-bounce-to-bottom" href="//adguard.com/en/adguard-adblock-browser-extension/overview.html">Adguard AdBlocker</a></p>
|
||||
|
||||
<h2>Anti-Adblock Killer (List)</h2>
|
||||
<p>Click to add it automatically</p>
|
||||
<p><a class="button hvr-bounce-to-bottom" href="abp:subscribe?location=https://raw.github.com/reek/anti-adblock-killer/master/anti-adblock-killer-filters.txt&title=AakList (Anti-Adblock Killer)">Subscribe</a></p>
|
||||
<p>Or enable AakList in the filter lists otherwise add it manually</p>
|
||||
<p>
|
||||
<input onfocus="this.select();" class="field-list" type="text" value="https://raw.github.com/reek/anti-adblock-killer/master/anti-adblock-killer-filters.txt" />
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<p class="center"><a href="//github.com/reek/anti-adblock-killer/wiki/Add-or-update">How to add/update AakList ?</a></p>
|
||||
-->
|
||||
<h3>Compatible</h3>
|
||||
<div class="fieldset center">
|
||||
<p>Adblock, Adblock Plus, uBlock Origin, Adguard</p>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</section>
|
||||
|
||||
|
||||
|
||||
<h1 class="animated bounceInLeft"><a name="contact" href="#contact">Contact</a></h1>
|
||||
<section class="section animated bounceInRight">
|
||||
<div class="content">
|
||||
|
||||
<h3>Get in touch</h3>
|
||||
<p>Please use our <a href="https://gitlab.com/xuhaiyang1234/AAK-Cont/issues">issues tracker</a></p>
|
||||
<div class="fieldset">
|
||||
<script>
|
||||
var sendMail = function() {
|
||||
|
||||
alert("Please use the issues tracker instead");
|
||||
return;
|
||||
|
||||
var $field,
|
||||
valid = true,
|
||||
data = {};
|
||||
|
||||
$('#contact-form .field').each(function() {
|
||||
$field = $(this);
|
||||
|
||||
// restore default field class
|
||||
$field.removeClass("filed-empty");
|
||||
|
||||
// check fields
|
||||
if ($field.val() == "") {
|
||||
$field.focus();
|
||||
$field.addClass("filed-empty");
|
||||
valid = false;
|
||||
return false;
|
||||
}
|
||||
|
||||
// get data fields
|
||||
data[$field.attr('name')] = $field.val();
|
||||
});
|
||||
|
||||
// anti-bot
|
||||
delete data.robot;
|
||||
|
||||
// get user config
|
||||
data.config = $('#aak-settings-config').text();
|
||||
|
||||
// submit
|
||||
if (valid) {
|
||||
$('#contact-form #send').text('Sending...');
|
||||
$.post("//example.com/gm/anti-adblock-killer/mailer.php", data)
|
||||
.fail(function(jqXHR, textStatus) {
|
||||
$('#contact-form').html('<h4>' + textStatus + '</h4>');
|
||||
})
|
||||
.done(function(data) {
|
||||
$('#contact-form').html('<h4>' + data + '</h4>');
|
||||
});
|
||||
}
|
||||
}
|
||||
</script>
|
||||
<form id="contact-form" onsubmit="return false;">
|
||||
<p>
|
||||
<input type="text" name="name" placeholder="Name" class="field" />
|
||||
</p>
|
||||
<p>
|
||||
<input type="text" name="email" placeholder="Email" class="field" />
|
||||
</p>
|
||||
<p>
|
||||
<select name="subject" class="field">
|
||||
<option value="" selected>-- Choose Subject --</option>
|
||||
<option value="Question or Help">Question or Help</option>
|
||||
<option value="Feedback or Thanks">Feedback or Thanks</option>
|
||||
<option value="Report a website or issue">Report a website or issue</option>
|
||||
<option value="Submit a rule">Submit a rule</option>
|
||||
<option value="Other">Other</option>
|
||||
</select>
|
||||
</p>
|
||||
<p>
|
||||
<textarea name="message" rows="10" placeholder="Message" class="field"></textarea>
|
||||
</p>
|
||||
<p>
|
||||
<input type="hidden" name="robot" value="true" class="field" />
|
||||
</p>
|
||||
<p>
|
||||
<button type="button" id="send" onclick="sendMail()" class="button hvr-bounce-to-bottom" disabled="disabled">Send (disabled)</button>
|
||||
</p>
|
||||
</form>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</section>
|
||||
|
||||
|
||||
|
||||
<h1 class="animated bounceInLeft"><a name="settings" href="#settings">Settings</a></h1>
|
||||
<section class="section animated bounceInRight">
|
||||
<div class="content">
|
||||
|
||||
<div id="aak-settings-notice">
|
||||
<h3>Notice</h3>
|
||||
<div class="fieldset center">Anti-Adblock Killer is not installed or active, <a href="https://gitlab.com/xuhaiyang1234/AAK-Cont">see instructions.</a></div>
|
||||
</div>
|
||||
|
||||
<div id="aak-settings-box">
|
||||
<h3>Your Configuration</h3>
|
||||
<div class="fieldset" id="aak-settings-config"></div>
|
||||
|
||||
<h3>General</h3>
|
||||
<div class="fieldset" id="aak-settings-general"></div>
|
||||
|
||||
<h3>Debug</h3>
|
||||
<div class="fieldset" id="aak-settings-debug"></div>
|
||||
|
||||
<p>
|
||||
<button id="aak-settings-save" class="button hvr-bounce-to-bottom">Save</button>
|
||||
</p>
|
||||
|
||||
<div class="small">
|
||||
<p>* youwatch.org, biztok.pl, wp.tv, wp.pl, sportowefakty.pl, kafeteria.tv, .wrzuta.pl, pudelek.tv, komediowo.pl, sfora.pl, autokrata.pl, sportfan.pl, wawalove.pl, hotmoney.pl, aleseriale.pl, babol.pl, snobka.pl, nocoty.pl, money.pl, tvn.pl, tvn24.pl, player.pl, ipla.tv, m6web.fr, myspass.de, vgtv.no</p>
|
||||
<p>** tvn.pl, tvn24.pl, player.pl</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<!--
|
||||
<footer class="footer">
|
||||
|
||||
<div class="listBox">
|
||||
<ul class="listFloat">
|
||||
<li class="listTitle">About</li>
|
||||
<li><a class="listLink hvr-underline-from-left" href="//example.com/reek/anti-adblock-killer#instruction">Instructions</a></li>
|
||||
<li><a class="listLink hvr-underline-from-left" href="//example.com/reek/anti-adblock-killer#help">Help</a></li>
|
||||
<li><a class="listLink hvr-underline-from-left" href="//example.com/reek/anti-adblock-killer#report">Report</a></li>
|
||||
<li><a class="listLink hvr-underline-from-left" href="//example.com/reek/anti-adblock-killer#features">Features</a></li>
|
||||
</ul>
|
||||
<ul class="listFloat">
|
||||
<li class="listTitle"> </li>
|
||||
<li><a class="listLink hvr-underline-from-left" href="//example.com/reek/anti-adblock-killer#changelog">Changelog</a></li>
|
||||
<li><a class="listLink hvr-underline-from-left" href="//example.com/reek/anti-adblock-killer#donate">Donate</a></li>
|
||||
<li><a class="listLink hvr-underline-from-left" href="//example.com/anti-adblock-killer/#contact">Contact</a></li>
|
||||
<li><a class="listLink hvr-underline-from-left" href="//twitter.com/">Twitter</a></li>
|
||||
</ul>
|
||||
<ul class="listFloat">
|
||||
<li class="listTitle">Mirrors</li>
|
||||
<li><a class="listLink hvr-underline-from-left" href="//example.com/reek/anti-adblock-killer#anti-adblock-killer--reek">Github</a></li>
|
||||
<li><a class="listLink hvr-underline-from-left" href="//example.com/fr/scripts/735-anti-adblock-killer-reek">Greasefork</a></li>
|
||||
<li><a class="listLink hvr-underline-from-left" href="//example.com/scripts/reek/Anti-Adblock_Killer_Reek">Openuserjs</a></li>
|
||||
<li><a class="listLink hvr-underline-from-left" href="//example.com/anti-adblock-killer/">Reeksite</a></li>
|
||||
</ul>
|
||||
<ul class="listFloat">
|
||||
<li class="listTitle">Supported</li>
|
||||
<li><a class="listLink hvr-underline-from-left" href="//example.com/reek/anti-adblock-killer#supported-sites">Sites</a></li>
|
||||
<li><a class="listLink hvr-underline-from-left" href="//example.com/reek/anti-adblock-killer#supported-browsers">Browsers</a></li>
|
||||
<li><a class="listLink hvr-underline-from-left" href="//example.com/reek/anti-adblock-killer#supported-adblockers">Adblockers</a></li>
|
||||
<li><a class="listLink hvr-underline-from-left" href="//example.com/reek/anti-adblock-killer#step-1-script-manager-install">ScriptManagers</a></li>
|
||||
</ul>
|
||||
</div>-->
|
||||
|
||||
<div class="copyright">
|
||||
<p><img src="//www.gravatar.com/avatar/afb8376a9f634cd3501af4387de6425f.png" /></p>
|
||||
<p><a class="listLink hvr-underline-from-center" href="//creativecommons.org/licenses/by-nc-sa/4.0/">Author: Reek License: CC BY-NC-SA</a></p>
|
||||
</div>
|
||||
|
||||
</footer>
|
||||
|
||||
</body>
|
||||
|
||||
</html>
|