mirror of
https://github.com/SoPat712/videospeed.git
synced 2025-08-21 18:08:46 -04:00
bump to 0.4.0
This commit is contained in:
@@ -22,12 +22,13 @@ 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:
|
||||||
|
|
||||||
* YouTube: make sure you [enable the HTML5 opt-in experiment](http://www.youtube.com/html5).
|
* 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 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
|
### FAQ
|
||||||
|
|
||||||
|
@@ -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",
|
||||||
|
28
popup.css
28
popup.css
@@ -7,17 +7,23 @@ 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 {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
background-image: linear-gradient(#EDEDED, #EDEDED 38%, #DEDEDE);
|
background-image: linear-gradient(#EDEDED, #EDEDED 38%, #DEDEDE);
|
||||||
border: 1px solid rgba(0,0,0,0.25);
|
border: 1px solid rgba(0,0,0,0.25);
|
||||||
border-radius: 2px;
|
border-radius: 2px;
|
||||||
outline: none;
|
outline: none;
|
||||||
box-shadow: 0 1px 0 rgba(0,0,0,0.08), inset 0 1px 2px rgba(255,255,255,0.75);
|
box-shadow: 0 1px 0 rgba(0,0,0,0.08), inset 0 1px 2px rgba(255,255,255,0.75);
|
||||||
color: #444;
|
color: #444;
|
||||||
text-shadow: 0 1px 0 rgb(240,240,240);
|
text-shadow: 0 1px 0 rgb(240,240,240);
|
||||||
font: inherit;
|
font: inherit;
|
||||||
user-select: none;
|
user-select: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.secondary {
|
||||||
|
font-size: 0.95em;
|
||||||
|
margin: 0.15em 0;
|
||||||
|
}
|
||||||
|
@@ -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>
|
||||||
|
Reference in New Issue
Block a user