chrome-plugin-demo/full-chrome-plugin-demo/options.html

32 lines
844 B
HTML
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<style>
body{font-size: 16px;width: 400px; height: 300px;padding: 10px;font-family: 'Microsoft Yahei'; }
#status {color:red;}
</style>
<title>插件配置页</title>
</head>
<body>
<h1>简单的配置页</h1>
<p>(功能很无聊,纯属演示功能)</p>
<div>
<label>请选择popup页面背景色</label>
<select id="color">
<option value="white">white</option>
<option value="red">red</option>
<option value="green">green</option>
<option value="blue">blue</option>
<option value="yellow">yellow</option>
</select>
</div>
<div>
<label><input type="checkbox" id="show_image"/>允许网页显示图片</label>
</div>
<a href="javascript:;" id="save">保存配置</a>
<div id="status"></div>
<script src="js/options.js"></script>
</body>
</html>