mirror of
https://github.com/SoPat712/videospeed.git
synced 2025-08-21 09:58:45 -04:00

* Reformatted codebase using prettier.io (should not change functional behavior) * Formatted README.md, added CONTRIBUTING.md, .prettierrc configuration file, and installed pre-commit hook
19 lines
527 B
HTML
19 lines
527 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Video Speed Controller: Popup</title>
|
|
<link rel="stylesheet" href="popup.css" />
|
|
<script src="popup.js"></script>
|
|
</head>
|
|
<body>
|
|
<button id="enable" class="hide">Enable</button>
|
|
<button id="disable">Disable</button>
|
|
<span id="status" class="hide"></span>
|
|
<hr />
|
|
<button id="config">Settings</button>
|
|
<hr />
|
|
<button id="feedback" class="secondary">Send feedback</button>
|
|
<button id="about" class="secondary">About</button>
|
|
</body>
|
|
</html>
|