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,12 +22,13 @@ Once the extension is installed simply navigate to any page that offers HTML5 vi
* **R** - reset playback speed.
* **Z** - rewind 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:
* YouTube: make sure you [enable the HTML5 opt-in experiment](http://www.youtube.com/html5).
* If you're adventurous, try disabling the Flash plugin in Chrome in chrome://plugins/
* If viewing a video on Wistia, right click to switch to HTML5 video, refresh the page, and the controls will appear.
* If viewing a video on Wistia, right click to switch to HTML5 video, refresh the page, and the controls will appear.
### FAQ

View File

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

View File

@@ -7,17 +7,23 @@ hr {
border: 0;
height: 0;
border-top: 1px solid rgba(0, 0, 0, 0.3);
margin: 0.6em 0;
}
button {
width: 100%;
background-image: linear-gradient(#EDEDED, #EDEDED 38%, #DEDEDE);
border: 1px solid rgba(0,0,0,0.25);
border-radius: 2px;
outline: none;
box-shadow: 0 1px 0 rgba(0,0,0,0.08), inset 0 1px 2px rgba(255,255,255,0.75);
color: #444;
text-shadow: 0 1px 0 rgb(240,240,240);
font: inherit;
user-select: none;
}
width: 100%;
background-image: linear-gradient(#EDEDED, #EDEDED 38%, #DEDEDE);
border: 1px solid rgba(0,0,0,0.25);
border-radius: 2px;
outline: none;
box-shadow: 0 1px 0 rgba(0,0,0,0.08), inset 0 1px 2px rgba(255,255,255,0.75);
color: #444;
text-shadow: 0 1px 0 rgb(240,240,240);
font: inherit;
user-select: none;
}
.secondary {
font-size: 0.95em;
margin: 0.15em 0;
}

View File

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