Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(849)

Unified Diff: chrome/browser/resources/hotword/manifest.json

Issue 423083002: Add new hotword extension for built-in hotword triggering. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase. Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/resources/hotword/manager.js ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/hotword/manifest.json
diff --git a/chrome/browser/resources/hotword/manifest.json b/chrome/browser/resources/hotword/manifest.json
new file mode 100644
index 0000000000000000000000000000000000000000..3225a681457966e06076fb301ab8bdd2eae671f4
--- /dev/null
+++ b/chrome/browser/resources/hotword/manifest.json
@@ -0,0 +1,38 @@
+{
+ // Extension ID: nbpagnldghgfoolbancepceaanlmhfmd
+ "key": "MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDbHXRPiq2De9EJ+4pvNN6uE/D2avxrqyLSpA/Hq3II+btkPl1gboY3oUPTfevpVOFa90Y1c1b3/W682dXqybT0klIvFLKhdQx0LiVqSUQyIaDrwOCSo/ZcukbEwDRojegWymCjHvX6WZk4kKZzTJYzY1vrp0TWKLhttEMN9KFmowIDAQAB",
+
+ "name": "Hotword triggering",
+ "version": "0.0.1.0",
+ "manifest_version": 2,
+
+ "background": {
+ "scripts": ["manager.js"],
+ "persistent": false
+ },
+
+ "permissions": [
+ "*://*.google.com/*",
+ "chrome://newtab/",
+ "hotwordPrivate",
+ "tabs"
+ ],
+
+ "externally_connectable": {
+ "matches": [
+ "*://*.google.com/*",
+ "chrome://newtab/"
+ ]
+ },
+
+ "import": [
+ {
+ // TODO(amistry): For now, use a locally modified version of the external
+ // hotword extension. Replace with the ID of the new shared module
+ // containing the hotword detector.
+ "id": "bepbmhgboaologfdajaanbcjmnhjmhfn"
+ }
+ ],
+
+ "minimum_chrome_version": "38"
+}
« no previous file with comments | « chrome/browser/resources/hotword/manager.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698