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

youtubecinema/ manifest.json
23 lines
488 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. "icons": {
  13. "19": "img/icon19.png",
  14. "38": "img/icon38.png",
  15. "48": "img/icon48.png",
  16. "96": "img/icon96.png"
  17. },
  18. "applications": {
  19. "gecko": {"id": "youtubecinema@youtubecinema"}
  20. },
  21. "manifest_version": 2
  22. }