bump to 0.4.0

This commit is contained in:
Ilya Grigorik
2016-07-29 11:12:32 -07:00
parent 23813d3f15
commit 14e181388f
4 changed files with 23 additions and 16 deletions

View File

@@ -22,6 +22,7 @@ Once the extension is installed simply navigate to any page that offers HTML5 vi
* **R** - reset playback speed. * **R** - reset playback speed.
* **Z** - rewind video by 10 seconds. * **Z** - rewind video by 10 seconds.
* **X** - advance video by 10 seconds. * **X** - advance video by 10 seconds.
* **V** - show/hide the controller.
Note that you can customize these shortcuts in the extension settings page. Also, a few tips for enabling and forcing HTML5 video: Note that you can customize these shortcuts in the extension settings page. Also, a few tips for enabling and forcing HTML5 video:

View File

@@ -1,7 +1,7 @@
{ {
"name": "Video Speed Controller", "name": "Video Speed Controller",
"short_name": "videospeed", "short_name": "videospeed",
"version": "0.3.3", "version": "0.4.0",
"manifest_version": 2, "manifest_version": 2,
"description": "Speed up, slow down, advance and rewind any HTML5 video with quick shortcuts.", "description": "Speed up, slow down, advance and rewind any HTML5 video with quick shortcuts.",
"homepage_url": "https://github.com/igrigorik/videospeed", "homepage_url": "https://github.com/igrigorik/videospeed",

View File

@@ -7,6 +7,7 @@ hr {
border: 0; border: 0;
height: 0; height: 0;
border-top: 1px solid rgba(0, 0, 0, 0.3); border-top: 1px solid rgba(0, 0, 0, 0.3);
margin: 0.6em 0;
} }
button { button {
@@ -21,3 +22,8 @@ button {
font: inherit; font: inherit;
user-select: none; user-select: none;
} }
.secondary {
font-size: 0.95em;
margin: 0.15em 0;
}

View File

@@ -6,9 +6,9 @@
<script src="popup.js"></script> <script src="popup.js"></script>
</head> </head>
<body> <body>
<button id="config">Configure</button> <button id="config">Settings</button>
<hr /> <hr />
<button id="feedback">Send feedback</button> <button id="feedback" class="secondary">Send feedback</button>
<button id="about">About</button> <button id="about" class="secondary">About</button>
</body> </body>
</html> </html>