From a84d7bdf5c998a37f1af4e4902271f9ecc026610 Mon Sep 17 00:00:00 2001 From: codebicycle Date: Sat, 28 Mar 2020 07:54:37 +0200 Subject: [PATCH] Re-add support for Firefox keys `-`, `+` and `;` --- manifest.json | 2 +- options.js | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/manifest.json b/manifest.json index db73f7b..64c8309 100644 --- a/manifest.json +++ b/manifest.json @@ -1,7 +1,7 @@ { "name": "Video Speed Controller", "short_name": "videospeed", - "version": "0.5.9", + "version": "0.5.9.1", "manifest_version": 2, "description": "Speed up, slow down, advance and rewind any HTML5 video with quick shortcuts.", "homepage_url": "https://github.com/codebicycle/videospeed", diff --git a/options.js b/options.js index 8bc0719..44b82d8 100644 --- a/options.js +++ b/options.js @@ -75,6 +75,9 @@ var keyCodeAliases = { 220: '\\', 221: ']', 222: '\'', + 59: ';', + 61: '+', + 173: '-', } function recordKeyPress(e) {