set extension id
This commit is contained in:
parent
51646cc5f9
commit
c7fa5c486d
2 changed files with 6 additions and 1 deletions
2
Makefile
2
Makefile
|
@ -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 $@)" .
|
||||||
|
|
|
@ -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/*"],
|
||||||
|
|
Loading…
Add table
Reference in a new issue