Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Browser: Add CSS based Adblock plugin #336

Merged
merged 5 commits into from
Jul 13, 2020
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
115 changes: 115 additions & 0 deletions core/adblock.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,115 @@
/*
* This file can be used to apply a style to all web pages you view
* Rules without !important are overruled by author rules if the
* author sets any. Rules with !important overrule author rules.
*/

/* You can find the latest version of this ad blocking css at:
* http://www.floppymoose.com
* hides many ads by preventing display of images that are inside
* links when the link HREF contans certain substrings.
*/

A:link[HREF*="addata"] IMG,
A:link[HREF*="ad."] IMG,
A:link[HREF*="ads."] IMG,
A:link[HREF*="/ad"] IMG,
A:link[HREF*="/A="] IMG,
A:link[HREF*="/click"] IMG,
A:link[HREF*="?click"] IMG,
A:link[HREF*="?banner"] IMG,
A:link[HREF*="=click"] IMG,
A:link[HREF*="clickurl="] IMG,
A:link[HREF*=".atwola."] IMG,
A:link[HREF*="spinbox."] IMG,
A:link[HREF*="transfer.go"] IMG,
A:link[HREF*="adfarm"] IMG,
A:link[HREF*="adSpace"] IMG,
A:link[HREF*="adserve"] IMG,
A:link[HREF*=".banner"] IMG,
A:link[HREF*="bluestreak"] IMG,
A:link[HREF*="doubleclick"] IMG,
A:link[HREF*="/rd."] IMG,
A:link[HREF*="/0AD"] IMG,
A:link[HREF*=".falkag."] IMG,
A:link[HREF*="trackoffer."] IMG,
A:link[HREF*="casalemedia."] IMG,
A:link[HREF*="valueclick."] IMG,
A:link[HREF*="betterbasketball."] IMG,
A:link[HREF*="sponsors.phtml"] IMG,
A:link[HREF*="realgmtix.phtml"] IMG,
A:link[HREF*="BurstingPipe"] IMG,
A:link[HREF*="ebayobjects"] IMG,
A:link[HREF*="tracksponsor."] IMG { display: none ! important }

/* disable ad iframes */
IFRAME[SRC*="addata"],
IFRAME[SRC*="ad."],
IFRAME[SRC*="ads."],
IFRAME[SRC*="/ad"],
IFRAME[SRC*="/A="],
IFRAME[SRC*="/click"],
IFRAME[SRC*="?click"],
IFRAME[SRC*="?banner"],
IFRAME[SRC*="=click"],
IFRAME[SRC*="clickurl="],
IFRAME[SRC*=".atwola."],
IFRAME[SRC*="spinbox."],
IFRAME[SRC*="transfer.go"],
IFRAME[SRC*="adfarm"],
IFRAME[SRC*="adSpace"],
IFRAME[SRC*="adserve"],
IFRAME[SRC*="adjuggler"],
IFRAME[SRC*=".banner"],
IFRAME[SRC*="bluestreak"],
IFRAME[SRC*="doubleclick"],
IFRAME[SRC*="/rd."],
IFRAME[SRC*="/0AD"],
IFRAME[SRC*=".falkag."],
IFRAME[SRC*="trackoffer."],
IFRAME[SRC*="connextra."],
IFRAME[ID*="merchandisingMERC"],
IFRAME[SRC*="tracksponsor."] { display: none ! important }


/* miscellaneous different blocking rules to block some stuff that gets through */

A:link[onmouseover*="AdSolution"] IMG,
*[class=sponsors],
*[class=sp_links],
*[class=advertising],
*[ID=sponsors],
*[ID=ad],
*[ID=inlinead],
*[ID=ad_creative],
*[ID=contextualLinks],
IMG[SRC*=".msads."] { display: none ! important }


/* turning some false positives back off */

A:link[HREF*="/add"] IMG,
A:link[HREF*="/adsl"] IMG,
A:link[HREF*="thread."] IMG,
A:link[HREF*="download."] IMG,
A:link[HREF*="downloads."] IMG,
A:link[HREF*="netflix.com/AddToQueue"] IMG,
A:link[HREF*="load."],
A:link[HREF*="loads."],
IFRAME[SRC*="load."],
IFRAME[SRC*="loads."],
A:link[HREF*="click.mp3"] IMG { display: inline ! important }

/* Prevent flash animations from playing until you click on them. */
object[classid$=":D27CDB6E-AE6D-11cf-96B8-444553540000"],
object[codebase*="swflash.cab"],
object[type="application/x-shockwave-flash"],
embed[type="application/x-shockwave-flash"],
embed[src$=".swf"]
{ -moz-binding: url("http://www.floppymoose.com/clickToView.xml#ctv"); }

/*
* For more examples see http://www.mozilla.org/unix/customizing.html
*/


57 changes: 55 additions & 2 deletions core/browser.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>.

from PyQt5 import QtCore
from PyQt5.QtCore import QUrl, Qt, QEvent, QPointF, QEventLoop, QVariant, QTimer, QRectF
from PyQt5.QtCore import QUrl, Qt, QEvent, QPointF, QEventLoop, QVariant, QTimer, QRectF, QFile
from PyQt5.QtGui import QBrush, QColor
from PyQt5.QtNetwork import QNetworkCookie
from PyQt5.QtWebEngineWidgets import QWebEngineView, QWebEnginePage, QWebEngineContextMenuData, QWebEngineProfile, QWebEngineSettings
from PyQt5.QtWebEngineWidgets import QWebEngineView, QWebEnginePage, QWebEngineScript, QWebEngineContextMenuData, QWebEngineProfile, QWebEngineSettings
from PyQt5.QtWidgets import QApplication, QWidget
from core.utils import touch, is_port_in_use, string_to_base64, popen_and_call, call_and_check_code, interactive
from core.buffer import Buffer
Expand Down Expand Up @@ -51,6 +51,7 @@ def __init__(self, buffer_id, config_dir):
self.installEventFilter(self)
self.buffer_id = buffer_id
self.config_dir = config_dir
self.enable_adblock = True
HollowMan6 marked this conversation as resolved.
Show resolved Hide resolved

self.web_page = BrowserPage()
self.setPage(self.web_page)
Expand All @@ -65,6 +66,9 @@ def __init__(self, buffer_id, config_dir):

self.load_cookie()

if self.enable_adblock:
self.load_css(os.path.join(os.path.dirname(__file__), "adblock.css"),'adblock')

self.search_term = ""

self.get_markers_raw = self.read_js_content("get_markers.js")
Expand All @@ -79,6 +83,43 @@ def __init__(self, buffer_id, config_dir):
self.get_selection_text_js = self.read_js_content("get_selection_text.js")
self.focus_input_js = self.read_js_content("focus_input.js")

def load_css(self, path, name):
path = QFile(path)
if not path.open(QFile.ReadOnly | QtCore.QFile.Text):
return
css = path.readAll().data().decode("utf-8")
SCRIPT = """
(function() {
css = document.createElement('style');
css.type = 'text/css';
css.id = "%s";
document.head.appendChild(css);
css.innerText = `%s`;
})()
""" % (name, css)

script = QWebEngineScript()
self.web_page.runJavaScript(SCRIPT, QWebEngineScript.ApplicationWorld)
script.setName(name)
script.setSourceCode(SCRIPT)
script.setInjectionPoint(QWebEngineScript.DocumentReady)
script.setRunsOnSubFrames(True)
script.setWorldId(QWebEngineScript.ApplicationWorld)
self.web_page.scripts().insert(script)

def remove_css(self, name, immediately):
SCRIPT = """
(function() {
var element = document.getElementById('%s');
element.outerHTML = '';
delete element;
})()
""" % (name)
if immediately:
self.web_page.runJavaScript(SCRIPT, QWebEngineScript.ApplicationWorld)
script = self.web_page.scripts().findScript(name)
self.web_page.scripts().remove(script)

def open_download_manage_page(self):
''' Open aria2-webui download manage page. '''
self.open_url_new_buffer("file://" + (os.path.join(os.path.dirname(__file__), "aria2-webui", "index.html")))
Expand Down Expand Up @@ -125,6 +166,18 @@ def _search_text(self, text, is_backward = False):
self.web_page.findText(self.search_term, self.web_page.FindBackward)
else:
self.web_page.findText(self.search_term)

@interactive()
def change_adblock_status(self):
''' Change adblock status.'''
if self.enable_adblock == True:
self.enable_adblock = False
self.remove_css('adblock',True)
self.buffer.message_to_emacs.emit("Successfully disabled adblock!")
elif self.enable_adblock == False:
self.enable_adblock = True
self.load_css(os.path.join(os.path.dirname(__file__), "adblock.css"),'adblock')
self.buffer.message_to_emacs.emit("Successfully enabled adblock!")

@interactive()
def search_text_forward(self):
Expand Down
1 change: 1 addition & 0 deletions eaf.el
Original file line number Diff line number Diff line change
Expand Up @@ -269,6 +269,7 @@ Try not to modify this alist directly. Use `eaf-setq' to modify instead."
("C-0" . "zoom_reset")
("C-s" . "search_text_forward")
("C-r" . "search_text_backward")
("C-d" . "change_adblock_status")
("C-n" . "scroll_up")
("C-p" . "scroll_down")
("C-f" . "scroll_right")
Expand Down