mirror of
https://github.com/gorhill/uBlock.git
synced 2024-11-06 19:02:30 +01:00
560def639f
Just the same as with uBO, but for uBOL.
33 lines
867 B
HTML
33 lines
867 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1">
|
|
<title>Matched rules</title>
|
|
<link rel="stylesheet" href="css/default.css">
|
|
<link rel="stylesheet" href="css/common.css">
|
|
<link rel="stylesheet" href="css/fa-icons.css">
|
|
<link rel="stylesheet" href="css/matched-rules.css">
|
|
|
|
<link rel="shortcut icon" type="image/png" href="img/icon_64.png"/>
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div id="matchedEntries">
|
|
</div>
|
|
|
|
<template id="matchInfo">
|
|
<div class="matchInfo">
|
|
<span class="requestInfo"></span>
|
|
<span class="ruleInfo"></span>
|
|
</div>
|
|
</template>
|
|
|
|
<script src="js/theme.js" type="module"></script>
|
|
<script src="js/fa-icons.js" type="module"></script>
|
|
<script src="js/i18n.js" type="module"></script>
|
|
<script src="js/matched-rules.js" type="module"></script>
|
|
</body>
|
|
</html>
|