Skip to content

Commit

Permalink
Merge remote-tracking branch 'refs/remotes/origin/Develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
Gerardufoin committed Sep 10, 2018
2 parents cadaabb + a8f903c commit ec40736
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 1 deletion.
9 changes: 9 additions & 0 deletions Scripts/Chapter.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,15 @@ function Chapter() {
}
});
}

// We remove the apu.php script as it prevents user to access the chat if the onclick ad has not been clicked.
if (mutation.target.tagName == "BODY") {
mutation.addedNodes.forEach(function(node) {
if (node.tagName === "SCRIPT" && node.getAttribute('src') != undefined && node.getAttribute('src').includes("apu.php")) {
mutation.target.removeChild(node);
}
});
}
});
}).observe(document, {childList: true, subtree: true});

Expand Down
6 changes: 6 additions & 0 deletions Views/Patchnotes.html
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,12 @@
<div id="content">
<h1>Versions</h1>
<hr>
<div class="patch">
<h2><a href="https://github.com/Gerardufoin/FreeKiss/releases/tag/v1.2.6">1.2.6</a></h2>
<ul>
<li>Disable KissManga preventing access to the chat if the onclick ad has not been clicked.</li>
</ul>
</div>
<div class="patch">
<h2><a href="https://github.com/Gerardufoin/FreeKiss/releases/tag/v1.2.5">1.2.5</a></h2>
<ul>
Expand Down
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"name": "FreeKiss",
"short_name": "FreeKiss",
"description": "Enhance your KissManga experience.",
"version": "1.2.5",
"version": "1.2.6",

"icons": {
"16": "Images/Icons/icon16.png",
Expand Down

0 comments on commit ec40736

Please sign in to comment.