Skip to content

Commit

Permalink
Downgrade extension to manifest v2. Bump version.
Browse files Browse the repository at this point in the history
  • Loading branch information
killergerbah committed Feb 24, 2021
1 parent 0d298ec commit d1e1a68
Showing 1 changed file with 5 additions and 7 deletions.
12 changes: 5 additions & 7 deletions extension/manifest.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"name": "asbplayer",
"description": "Sync asbplayer with streaming video",
"version": "0.2.0",
"manifest_version": 3,
"version": "0.2.1",
"manifest_version": 2,
"icons": {
"16": "icon16.png",
"48": "icon48.png",
Expand All @@ -14,7 +14,8 @@
"default_popup": "popup.html"
},
"background": {
"service_worker": "background.js"
"persistent": false,
"scripts": ["background.js"]
},
"content_scripts": [
{
Expand All @@ -30,8 +31,5 @@
"run_at": "document_start"
}
],
"web_accessible_resources": [{
"resources": ["netflix.js"],
"matches": ["*://*/*"]
}]
"web_accessible_resources": ["netflix.js"]
}

0 comments on commit d1e1a68

Please sign in to comment.