mirror of
https://github.com/webrecorder/browsertrix-crawler.git
synced 2025-10-19 14:33:17 +00:00

Now that RWP 2.0.0 with adblock support has been released (webrecorder/replayweb.page#307), this enables adblock on the QA mode RWP embed, to get more accurate screenshots. Fetches the adblock.gz directly from RWP (though could also fetch it separately from Easylist) Updates to 1.1.0-beta.5
40 lines
683 B
HTML
40 lines
683 B
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<script src="/ui.js"></script>
|
|
<style>
|
|
html {
|
|
width: 100%;
|
|
height: 100%;
|
|
display: flex;
|
|
}
|
|
body {
|
|
width: 100%;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
replay-web-page {
|
|
margin: 0;
|
|
padding: 0;
|
|
border: 0;
|
|
position: fixed;
|
|
width: 100vw;
|
|
height: 100vh;
|
|
top: 0;
|
|
left: 0;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<replay-web-page
|
|
embed="replayonly"
|
|
deepLink="true"
|
|
source="$SOURCE"
|
|
url="about:blank"
|
|
ts=""
|
|
coll="replay"
|
|
useAdblock
|
|
>
|
|
</replay-web-page>
|
|
</body>
|
|
</html>
|