Skip to content

Commit

Permalink
fix(src manifest): update minimum chrome version for manifest v3
Browse files Browse the repository at this point in the history
  • Loading branch information
cmnord committed Apr 10, 2023
1 parent f100cb0 commit 2cc0290
Showing 1 changed file with 3 additions and 8 deletions.
11 changes: 3 additions & 8 deletions src/manifest.json
Expand Up @@ -4,7 +4,7 @@
"version": "3.0.0",
"description": "Browser extension which downloads Jeopardy games from applets for offline solving.",
"homepage_url": "https://github.com/cmnord/jeparser",
"minimum_chrome_version": "74",
"minimum_chrome_version": "88",
"browser_specific_settings": {
"gecko": {
"id": "jeparser@cmnord.github.com",
Expand All @@ -21,13 +21,8 @@
},
"content_scripts": [
{
"matches": [
"*://j-archive.com/showgame.php*"
],
"js": [
"content-script.js",
"browser-polyfill.min.js"
],
"matches": ["*://j-archive.com/showgame.php*"],
"js": ["content-script.js", "browser-polyfill.min.js"],
"run_at": "document_end"
}
]
Expand Down

0 comments on commit 2cc0290

Please sign in to comment.