Skip to content

Commit

Permalink
Merge pull request #117 from planetarium/version-up
Browse files Browse the repository at this point in the history
chore: version up in extension manifest
  • Loading branch information
boscohyun authored Jul 29, 2024
2 parents 9a7158e + 9793cdc commit 7af892b
Show file tree
Hide file tree
Showing 2 changed files with 50 additions and 30 deletions.
40 changes: 25 additions & 15 deletions extension/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"short_name": "Chrono Development Build",
"description": "__MSG_appDescription__",
"homepage_url": "https://github.com/planetarium/chrono",
"version": "0.1.0",
"version": "1.0.5",
"default_locale": "en",
"action": {
"default_icon": "images/logo.png",
Expand All @@ -25,18 +25,28 @@
"permissions": [
"storage"
],
"web_accessible_resources": [{
"resources": [
"content-scripts/global.js"
],
"matches": ["<all_urls>"]
}],
"content_scripts": [{
"matches": ["file://*/*", "http://*/*", "https://*/*"],
"js": [
"content-scripts/injectsdk.js"
],
"run_at": "document_start",
"all_frames": true
}]
"web_accessible_resources": [
{
"resources": [
"content-scripts/global.js"
],
"matches": [
"<all_urls>"
]
}
],
"content_scripts": [
{
"matches": [
"file://*/*",
"http://*/*",
"https://*/*"
],
"js": [
"content-scripts/injectsdk.js"
],
"run_at": "document_start",
"all_frames": true
}
]
}
40 changes: 25 additions & 15 deletions extension/manifest.prod.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"short_name": "__MSG_appName__",
"description": "__MSG_appDescription__",
"homepage_url": "https://github.com/planetarium/chrono",
"version": "0.1.0",
"version": "1.0.5",
"default_locale": "en",
"action": {
"default_icon": "images/logo.png",
Expand All @@ -25,18 +25,28 @@
"permissions": [
"storage"
],
"web_accessible_resources": [{
"resources": [
"content-scripts/global.js"
],
"matches": ["<all_urls>"]
}],
"content_scripts": [{
"matches": ["file://*/*", "http://*/*", "https://*/*"],
"js": [
"content-scripts/injectsdk.js"
],
"run_at": "document_start",
"all_frames": true
}]
"web_accessible_resources": [
{
"resources": [
"content-scripts/global.js"
],
"matches": [
"<all_urls>"
]
}
],
"content_scripts": [
{
"matches": [
"file://*/*",
"http://*/*",
"https://*/*"
],
"js": [
"content-scripts/injectsdk.js"
],
"run_at": "document_start",
"all_frames": true
}
]
}

0 comments on commit 7af892b

Please sign in to comment.