set extension id

This commit is contained in:
Nebel 2023-10-30 14:47:51 +09:00
parent 51646cc5f9
commit c7fa5c486d
Signed by: nebel
GPG key ID: 79807D08C6EF6460
2 changed files with 6 additions and 1 deletions

View file

@ -1,7 +1,7 @@
.PHONY: build .PHONY: build
build: dist/web-ext.zip build: dist/web-ext.zip
dist/web-ext.zip: dist/web-ext.zip: $(shell find src -type f)
mkdir -p "$(dir $@)" mkdir -p "$(dir $@)"
cd src \ cd src \
; zip -r "$(abspath $@)" . ; zip -r "$(abspath $@)" .

View file

@ -2,6 +2,11 @@
"manifest_version": 3, "manifest_version": 3,
"name": "Piped Redirection", "name": "Piped Redirection",
"version": "0.0.0", "version": "0.0.0",
"browser_specific_settings": {
"gecko": {
"id": "{d4a68467-c4d6-4823-9eb1-f2d65ab79fc4}"
}
},
"content_scripts": [ "content_scripts": [
{ {
"matches": ["https://www.youtube.com/*"], "matches": ["https://www.youtube.com/*"],