Browser extension to watch YouTube videos without the distracting cruft around it, in the full window.

youtubecinema/ manifest.json
17 lines
339 B

  1. {
  2. "name": "YoutubeCinema",
  3. "version": "1.0",
  4. "background": {
  5. "scripts": ["background.js"]
  6. },
  7. "permissions": [
  8. "*://*.youtube.com/*",
  9. "webRequest",
  10. "webRequestBlocking"
  11. ],
  12. "applications": {
  13. "gecko": {"id": "youtubecinema@youtubecinema"}
  14. },
  15. "manifest_version": 2
  16. }