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

youtubecinema/ manifest.json
34 lines
767 B

  1. {
  2. "name": "YoutubeCinema",
  3. "version": "1.0",
  4. "background": {
  5. "scripts": ["background.js"]
  6. },
  7. "page_action": {
  8. "browser_style": true,
  9. "default_icon": {
  10. "19": "img/icon19.png",
  11. "38": "img/icon38.png",
  12. "48": "img/icon48.png",
  13. "96": "img/icon96.png"
  14. }
  15. },
  16. "permissions": [
  17. "*://*.youtube.com/*",
  18. "tabs",
  19. "webNavigation",
  20. "webRequest",
  21. "webRequestBlocking"
  22. ],
  23. "icons": {
  24. "19": "img/icon19.png",
  25. "38": "img/icon38.png",
  26. "48": "img/icon48.png",
  27. "96": "img/icon96.png"
  28. },
  29. "applications": {
  30. "gecko": {"id": "youtubecinema@youtubecinema"}
  31. },
  32. "manifest_version": 2
  33. }