This repository has been archived by the owner on Sep 18, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #66 from mozilla/john-g-launch-issues
finish my remaining launch issues
- Loading branch information
Showing
8 changed files
with
160 additions
and
110 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,32 +1,40 @@ | ||
{ | ||
"manifest_version": 2, | ||
"name": "speak-to-me", | ||
"name": "Voice Fill", | ||
"version": "1.2.1", | ||
"description": "Adds voice input to popular search pages in Firefox. Learn more about Voice Fill at https://testpilot.firefox.com", | ||
"developer": { | ||
"name": "Fabrice Desré", | ||
"url": "https://github.com/fabricedesre" | ||
"url": "https://github.com/mozilla/speaktome" | ||
}, | ||
"icons": { | ||
"48": "assets/icon-48.png", | ||
"96": "assets/icon-96.png" | ||
}, | ||
|
||
"applications": { | ||
"gecko": { | ||
"id": "[email protected]", | ||
"update_url": "https://testpilot.firefox.com/files/@speak-to-me/updates.json" | ||
} | ||
}, | ||
|
||
"content_scripts": [ | ||
{ | ||
"matches": [ | ||
"https://www.google.com/*", | ||
"https://www.google.com/", | ||
"https://www.google.co.uk/*", | ||
"https://www.google.co.uk/", | ||
"https://www.google.ca/*", | ||
"https://www.google.ca/", | ||
"https://duckduckgo.com/", | ||
"https://duckduckgo.com/*", | ||
"https://yahoo.com/", | ||
"https://yahoo.com/*", | ||
"https://www.yahoo.com/", | ||
"https://www.yahoo.com/*", | ||
"https://search.yahoo.com/*", | ||
"https://uk.yahoo.com/", | ||
"https://uk.yahoo.com/*" | ||
"https://uk.yahoo.com/*", | ||
"https://ca.yahoo.com/", | ||
"https://ca.yahoo.com/*" | ||
], | ||
"js": ["bodymovin.js", "content.js", "webrtc_vad.js"], | ||
"css": ["main.css"] | ||
|
@@ -39,7 +47,9 @@ | |
"assets/icon-close.svg", | ||
"assets/icon-mic.svg", | ||
"assets/icon-redo.svg", | ||
"assets/icon-done.svg" | ||
"assets/icon-done.svg", | ||
"assets/ff-logo.png", | ||
"assets/feedback.svg" | ||
], | ||
"permissions": ["<all_urls>"] | ||
} |