Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
missmatsuko committed Nov 2, 2018
2 parents 259926a + 70bdebf commit a1bd45d
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 7 deletions.
10 changes: 6 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,16 +1,18 @@
# asl-tab
Chrome extension that loads a random ASL instructional video in new tabs. Content from [ASLU Signs YouTube Channel](https://www.youtube.com/channel/UCZy9xs6Tn9vWqN_5l0EEIZA).

[Download the ASL Tab Chrome Extension](https://chrome.google.com/webstore/detail/asl-tab/bjiakmejoofpfclmopcfpkopmamecnkd)
### Download the ASL Tab browser extension:
- [Chrome](https://chrome.google.com/webstore/detail/asl-tab/bjiakmejoofpfclmopcfpkopmamecnkd)
- [Firefox](https://addons.mozilla.org/en-US/firefox/addon/asl-tab/)

### Thanks
- Dr. Bill Vicars of ASLU (LifePrint) for content - [YouTube](https://www.youtube.com/user/billvicars), [Website](http://lifeprint.com/)
- [Bart Nagel (@tremby)](https://github.com/tremby) for code helps

## Roadmap
- [ ] Publish the Chrome extension
### Roadmap
- [x] Publish the Chrome extension
- [ ] Port extension to other browsers:
- [ ] FireFox
- [x] FireFox
- [ ] Edge (maybe)
- [ ] Add server-side component:
- [ ] Hide API key
Expand Down
10 changes: 7 additions & 3 deletions manifest.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"manifest_version": 2,
"name": "ASL Tab",
"version": "1.0",
"description": "Loads a random ASL instructional video in new tabs.",
"version": "1.1.0",
"description": "Loads a random, short American Sign Language (ASL) instructional video in new tabs. Videos from Dr. Bill Vicars of LifePrint/ASLU.",
"icons": {
"16": "icons/icon16.png",
"48": "icons/icon48.png",
Expand All @@ -11,5 +11,9 @@
"chrome_url_overrides": {
"newtab": "/newTab.html"
},
"content_security_policy": "script-src 'self' https://www.youtube.com https://s.ytimg.com; object-src 'self'"
"permissions": [
"https://www.youtube.com/*",
"https://www.googleapis.com/*"
],
"content_security_policy": "script-src 'self' https://www.youtube.com https://s.ytimg.com https://www.googleapis.com; object-src 'self'"
}

0 comments on commit a1bd45d

Please sign in to comment.