From c7fa5c486dec7830a618c2680cd9f64b39aa704f Mon Sep 17 00:00:00 2001 From: Kohei Watanabe Date: Mon, 30 Oct 2023 14:47:51 +0900 Subject: [PATCH] set extension id --- Makefile | 2 +- src/manifest.json | 5 +++++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 0d848f0..04acb53 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,7 @@ .PHONY: build build: dist/web-ext.zip -dist/web-ext.zip: +dist/web-ext.zip: $(shell find src -type f) mkdir -p "$(dir $@)" cd src \ ; zip -r "$(abspath $@)" . diff --git a/src/manifest.json b/src/manifest.json index ec66e13..070d2c9 100644 --- a/src/manifest.json +++ b/src/manifest.json @@ -2,6 +2,11 @@ "manifest_version": 3, "name": "Piped Redirection", "version": "0.0.0", + "browser_specific_settings": { + "gecko": { + "id": "{d4a68467-c4d6-4823-9eb1-f2d65ab79fc4}" + } + }, "content_scripts": [ { "matches": ["https://www.youtube.com/*"],