mirror of
https://github.com/mdn/webextensions-examples.git
synced 2026-04-16 06:18:35 +02:00
* add in managed example * Updated favourite-colour README to point to the storage.managed documentation
19 lines
345 B
HTML
19 lines
345 B
HTML
<!DOCTYPE html>
|
|
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
</head>
|
|
|
|
<body>
|
|
<p>storage.managed colour: <b id="managed-colour">no value found</b></p>
|
|
<form>
|
|
<label>Favourite colour</label>
|
|
<input type="text" id="colour" >
|
|
<button type="submit">Save</button>
|
|
</form>
|
|
<script src="options.js"></script>
|
|
</body>
|
|
|
|
</html>
|