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

youtubecinema/ Makefile
16 lines
396 B

  1. # Half-baked Makefile; mostly for reference of commands.
  2. # Requires two tools, web-ext and crx.
  3. # npm install -g web-ext crx
  4. .PHONY: build
  5. build: fx-build cr-build
  6. .PHONY: fx-build
  7. fx-build:
  8. web-ext -s ./extension -a ./dist build
  9. # Note: crx will overwrite a pre-existing output file.
  10. .PHONY: cr-build
  11. cr-build:
  12. crx pack ./extension -o ./dist/youtube-cinema.crx -p .chrome-extension-key.pem