mirror of
https://github.com/GoogleChrome/chrome-extensions-samples.git
synced 2026-03-28 13:39:44 +07:00
18 lines
539 B
HTML
18 lines
539 B
HTML
<!DOCTYPE html>
|
|
<html class="trim full">
|
|
<head>
|
|
<link rel="stylesheet" href="browser.css">
|
|
<link rel="stylesheet" href="blocked.css">
|
|
</head>
|
|
<body class="trim full flex-container column center">
|
|
<div class="flex flex-container row center">
|
|
<div class="flex flex-container column center">
|
|
<div class="flex center-text">Page blocked</div>
|
|
<div class="flex center-text">
|
|
<span class="a" onclick="window.history.back()">Go Back</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|