Skip to content

Commit

Permalink
chore(manifest v3)[WIP]: moving manifest file
Browse files Browse the repository at this point in the history
  • Loading branch information
ffoodd committed Sep 1, 2022
1 parent c028c6d commit 3b0c7c8
Showing 1 changed file with 5 additions and 9 deletions.
14 changes: 5 additions & 9 deletions manifest-chrome.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
{
"manifest_version": 2,
"manifest_version": 3,
"name": "a11y.css",
"description": "a11y.css provides warnings about possible risks and mistakes that exist in HTML.",
"version": "1.3.0",
"permissions": [
"activeTab",
"storage",
"tabs"
"scripting"
],
"browser_action": {
"action": {
"default_title": "a11y.css",
"default_popup": "popup/index.html",
"default_icon": {
Expand All @@ -17,19 +17,15 @@
}
},
"background": {
"scripts": [
"/scripts/browser-polyfill.min.js",
"/scripts/background/main.js"
],
"persistent": true
"service_worker": ["/scripts/background/main.js"],
"persistent": true
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"/scripts/browser-polyfill.min.js",
"/scripts/injected/checkalts.js",
"/scripts/injected/textspacing.js"
],
Expand Down

0 comments on commit 3b0c7c8

Please sign in to comment.