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

Add apological comments to Makefile.

tags/v1.3.0
Gerben 6 years ago
parent
commit
18a644c7ea
1 changed files with 8 additions and 0 deletions
  1. +8
    -0
      Makefile

+ 8
- 0
Makefile View File

@@ -1,7 +1,15 @@
# Half-baked Makefile; mostly for reference of commands.
# Requires two tools, web-ext and crx.
# npm install -g web-ext crx

.PHONY: build
build: fx-build cr-build

.PHONY: fx-build
fx-build:
web-ext -s ./extension -a ./dist build

# Note: crx will overwrite a pre-existing output file.
.PHONY: cr-build
cr-build:
crx pack ./extension -o ./dist/youtube-cinema.crx -p .chrome-extension-key.pem

Loading…
Cancel
Save