mirror of
https://github.com/gorhill/uBlock.git
synced 2026-03-11 09:04:36 +00:00
Related issue: https://github.com/uBlockOrigin/uBOL-home/issues/325 This is a first version, with support only for custom filters which are plain CSS selectors. Future versions will extend support to style-based and procedural cosmetic filters. Manually text-editing existing custom filters is currently not supported, this will be added in a future version in the Develop pane. To remove existing custom filters, the "Remove a custom filter" tool can be used.
32 lines
886 B
HTML
32 lines
886 B
HTML
<!DOCTYPE html>
|
|
<html id="ubol-zapper">
|
|
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="color-scheme" content="light dark">
|
|
<title>uBO Lite Zapper</title>
|
|
<link rel="stylesheet" href="/css/default.css">
|
|
<link rel="stylesheet" href="/css/tool-overlay-ui.css">
|
|
<link rel="stylesheet" href="/css/zapper-ui.css">
|
|
</head>
|
|
|
|
<body>
|
|
<aside>
|
|
<div id="quit" data-i18n-title="zapperTipQuit">
|
|
<svg viewBox="0 0 64 64"><path d="M16 16L48 48M16 48L48 16" /></svg>
|
|
</div>
|
|
<div id="pick">
|
|
<svg viewBox="0 0 64 64">
|
|
<path d="M10 32L54 32M32 10L32 54" />
|
|
<circle cx="32" cy="32" r="12" />
|
|
</svg>
|
|
</div>
|
|
</aside>
|
|
<svg id="overlay"><path d></path><path d="M0 0"></path></svg>
|
|
|
|
<script src="js/theme.js" type="module"></script>
|
|
<script src="js/i18n.js" type="module"></script>
|
|
<script src="js/zapper-ui.js" type="module"></script>
|
|
|
|
</body>
|
|
</html>
|