You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It seems Firefox is mostly compatible with Chrome extensions, so it might not be too difficult to make the browser extension part of this fork compatible with Firefox.
I followed some of the instructions here and was presented with this list of warnings:
{
"compat": [],
"errors": [],
"warnings": [
{
"message": "extension.getURL is deprecated",
"description": "This API has been deprecated by Firefox.",
"locations": [
{
"file": "shared/utils.js",
"line": 215
}
]
},
{
"message": "addEventListener` called with truthy fourth argument.",
"description": "When called with a truthy forth argument, listeners can be triggered potentially unsafely by untrusted code. This requires careful review.",
"locations": [
{
"file": "shared/eventsController.js",
"line": 4
},
{
"file": "shared/content.js",
"line": 481
}
]
},
{
"message": "eval can be harmful.",
"description": "Evaluation of strings as code can lead to security vulnerabilities and performance issues, even in the most innocuous of circumstances. Please avoid using `eval` and the `Function` constructor when at all possible.'",
"locations": [
{
"file": "shared/eventsController.js",
"line": 49
},
{
"file": "shared/content.js",
"line": 231
},
{
"file": "shared/content.js",
"line": 349
}
]
}
]
}
It seems that with a bit of work it should be possible to meet the Firefox standards for extensions and create a compatible version. Is this something you'd be interested in?
The text was updated successfully, but these errors were encountered:
However, I'm not sure if that is still relevant in the context of this repo, or newer Firefox versions (media keys work by default in Firefox now as far as I am aware).
Hello,
It seems Firefox is mostly compatible with Chrome extensions, so it might not be too difficult to make the browser extension part of this fork compatible with Firefox.
I followed some of the instructions here and was presented with this list of warnings:
It seems that with a bit of work it should be possible to meet the Firefox standards for extensions and create a compatible version. Is this something you'd be interested in?
The text was updated successfully, but these errors were encountered: