Skip to content

Commit

Permalink
add files for packaging as a browser extension
Browse files Browse the repository at this point in the history
  • Loading branch information
aaronpk committed Oct 5, 2020
1 parent f8a10d7 commit e263000
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 0 deletions.
Binary file added icons/icon-128.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 2 additions & 0 deletions jquery.js

Large diffs are not rendered by default.

28 changes: 28 additions & 0 deletions manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
{
"manifest_version": 2,
"name": "YouTube Chat Overlay",
"description": "Restyle the YouTube popout chat so you can overlay it for livestreams",
"version": "0.0.1",
"homepage_url": "https://github.com/aaronpk/YouTube-Chat-Overlay",
"icons": {
"128": "icons/icon-128.png"
},
"permissions": [
"https://youtube.com/*", "https://www.youtube.com/*"
],
"content_scripts": [{
"css": ["styles.css"],
"js": ["jquery.js", "chat.js"],
"matches": ["https://youtube.com/live_chat*", "https://www.youtube.com/live_chat*"]
}],
"browser_action": {
"default_icon": "icons/icon-128.png",
"theme_icons": [{
"light": "icons/icon-128.png",
"dark": "icons/icon-128.png",
"size": 128
}],
"default_title": "YouTube Chat Overlay",
"default_popup": "popup/youtube_chat.html"
}
}

0 comments on commit e263000

Please sign in to comment.