mirror of
https://github.com/mdn/webextensions-examples.git
synced 2026-04-16 14:28:33 +02:00
* Added an example for contentScripts.register * Use messaging instead of getBackgroundPage
27 lines
434 B
HTML
27 lines
434 B
HTML
<!DOCTYPE html>
|
|
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<link rel="stylesheet" href="user-script.css"/>
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div id="outer-wrapper">
|
|
|
|
<label for="hosts">Hosts</label>
|
|
<input id="hosts" type="text">
|
|
|
|
<label for="code">Code</label>
|
|
<textarea id="code" rows="10"></textarea>
|
|
|
|
<button id="register">Register script</button>
|
|
|
|
</div>
|
|
|
|
<script src="user-script.js"></script>
|
|
</body>
|
|
|
|
</html>
|