Skip to content

Commit

Permalink
small fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ritwickdey committed Oct 22, 2017
1 parent 598df16 commit 15345d8
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 9 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
sampleTest
sampleTest
web-ext-artifacts
16 changes: 8 additions & 8 deletions manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@
"content_scripts": [

This comment has been minimized.

Copy link
@brightdevelops

brightdevelops Dec 11, 2023

let

{
"matches": [
"http://localhost:*/*",
"https://localhost:*/*",
"http://127.0.0.1:*/*",
"https://127.0.0.1:*/*"
"http://localhost/*",
"https://localhost/*",
"http://127.0.0.1/*",
"https://127.0.0.1/*"
],
"js": [
"reload.js"
Expand All @@ -34,9 +34,9 @@
},
"permissions": [
"tabs",
"http://localhost:*/*",
"https://localhost:*/*",
"http://127.0.0.1:*/*",
"https://127.0.0.1:*/*"
"http://localhost/*",
"https://localhost/*",
"http://127.0.0.1/*",
"https://127.0.0.1/*"
]
}

0 comments on commit 15345d8

Please sign in to comment.