Skip to content

Commit

Permalink
Increment version
Browse files Browse the repository at this point in the history
  • Loading branch information
hao1300 committed May 30, 2020
1 parent 77024a4 commit ce9fda7
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 25 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -60,4 +60,5 @@ typings/
# next.js build output
.next

build
build
dist
32 changes: 8 additions & 24 deletions src/manifest.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "Hey Buddy - Chrome Voice Assistant",
"version": "2.1.0",
"version": "2.1.1",
"short_name": "Hey Buddy",
"manifest_version": 2,
"description": "Speech recognition and voice control for Chrome",
Expand All @@ -10,9 +10,7 @@
"default_popup": "popup.html"
},
"background": {
"scripts": [
"background.bundle.js"
]
"scripts": ["background.bundle.js"]
},
"icons": {
"16": "img/icon_16.png",
Expand All @@ -25,12 +23,8 @@
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"contents_iframe.bundle.js"
],
"matches": ["<all_urls>"],
"js": ["contents_iframe.bundle.js"],
"run_at": "document_idle"
}
],
Expand All @@ -45,18 +39,8 @@
}
},
"incognito": "spanning",
"permissions": [
"<all_urls>",
"activeTab",
"contextMenus",
"storage"
],
"web_accessible_resources": [
"notification_ui.html",
"img/*"
],
"optional_permissions": [
"bookmarks"
],
"permissions": ["<all_urls>", "activeTab", "contextMenus", "storage"],
"web_accessible_resources": ["notification_ui.html", "img/*"],
"optional_permissions": ["bookmarks"],
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}
}

0 comments on commit ce9fda7

Please sign in to comment.