Skip to content

Commit

Permalink
0.4.20
Browse files Browse the repository at this point in the history
  • Loading branch information
isnbh0 committed Dec 3, 2024
1 parent b94eb1d commit dd35060
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 9 deletions.
22 changes: 16 additions & 6 deletions manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"manifest_version": 3,
"name": "Sentence Follower",
"version": "0.4.19",
"version": "0.4.20",
"description": "Helps you follow along with long-form text content by identifying and highlighting the sentence under your cursor",
"icons": {
"16": "icons/icon16.png",
Expand All @@ -20,20 +20,30 @@
"page": "options/options.html",
"open_in_tab": false
},
"permissions": ["storage", "activeTab"],
"permissions": [
"storage",
"activeTab"
],
"background": {
"scripts": ["background.js"],
"scripts": [
"background.js"
],
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": ["http://*/*", "https://*/*"],
"js": ["content_scripts/sentence-highlight.js"]
"matches": [
"http://*/*",
"https://*/*"
],
"js": [
"content_scripts/sentence-highlight.js"
]
}
],
"browser_specific_settings": {
"gecko": {
"id": "{21bfdc3f-dc23-4712-ab2f-d0db70fa5b97}"
}
}
}
}
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "sentence-follower-extension",
"version": "0.4.19",
"version": "0.4.20",
"main": "content_scripts/sentence-highlight.js",
"keywords": [],
"author": "",
Expand Down

0 comments on commit dd35060

Please sign in to comment.