We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7f38cbd commit bd7f69bCopy full SHA for bd7f69b
java-redirect.js
@@ -24,7 +24,7 @@ const getReplaceAlgorithm = async version => {
24
browser.webRequest.onBeforeRequest.addListener(
25
async details => {
26
// Only redirect HTML
27
- if (!details.url.matches(/\.html(?:#.*)?$/)) {
+ if (!details.url.match(/\.html(?:#.*)?$/)) {
28
return {};
29
}
30
const result = await browser.storage.sync.get();
manifest.json
@@ -2,7 +2,7 @@
2
"manifest_version": 2,
3
4
"name": "Java-Redirector",
5
- "version": "5.0",
+ "version": "5.1",
6
"description": "Redirects your Browser to the newest version of the javadocs",
7
"icons": {
8
"48": "icons/java-redirect-48.png"
0 commit comments