From 3ed175df4b01099f8518d0c824b482b69a153a4e Mon Sep 17 00:00:00 2001 From: Piccirello Date: Mon, 29 Feb 2016 04:25:31 -0500 Subject: [PATCH 1/2] Allow backspace in Flash objects --- content.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/content.js b/content.js index 42b306d..e1ce272 100644 --- a/content.js +++ b/content.js @@ -11,6 +11,8 @@ $(document).keydown(function(e) { return true; } else if (element.is('input, textarea')) { return true; + } else if (active.attr('type') == 'application/x-shockwave-flash') { + return true; } return false; From 119707c8eeb02f7fc4b33845b367fd44c02dbb5a Mon Sep 17 00:00:00 2001 From: Piccirello Date: Mon, 29 Feb 2016 04:26:02 -0500 Subject: [PATCH 2/2] Bump version number --- manifest.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/manifest.json b/manifest.json index 6cf6b15..f8b3587 100644 --- a/manifest.json +++ b/manifest.json @@ -1,7 +1,7 @@ { "name": "BackStop", "description": "Stop Backspace returning to previous page.", - "version": "2.0.1", + "version": "2.0.2", "manifest_version" : 2, "icons": { "16": "logo16.png", @@ -15,4 +15,4 @@ "all_frames": true } ] -} \ No newline at end of file +}