Skip to content

Commit

Permalink
Update manifest regex
Browse files Browse the repository at this point in the history
  • Loading branch information
rfearing authored Aug 1, 2023
1 parent b3b8326 commit 34f91cc
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@
"version": "0.6",
"content_scripts": [
{
"matches": ["https://*.*.github.com/*", "https://github.com/*", "https://gist.github.com/*"],
"matches": ["https://*.github.com/*", "https://github.com/*"],
"css": ["styles.css"],
"js": ["contentScript.js"]
},
{
"matches": ["https://*.*.github.com/*", "https://github.com/*", "https://gist.github.com/*"],
"matches": ["https://*.github.com/*", "https://github.com/*"],
"css": ["./devtools-feedback/contentScriptStyles.css"],
"js": ["./devtools-feedback/contentScript.js"]
}
Expand All @@ -20,7 +20,7 @@
"service_worker": "background.js"
},
"permissions": ["tabs", "webNavigation"],
"host_permissions": ["*://*.*.github.com/*", "*://github.com/*", "https://gist.github.com/*"],
"host_permissions": ["*://*.github.com/*", "*://github.com/*"],
"web_accessible_resources": [
{
"resources": ["src/*"],
Expand Down

0 comments on commit 34f91cc

Please sign in to comment.