From bc5b66ba9e5c6d8b62ed98efaff8d91dab804b4f Mon Sep 17 00:00:00 2001 From: Ceda EI Date: Mon, 7 Sep 2020 19:38:36 +0530 Subject: [PATCH] Add manifest.json --- gmcr.js | 0 manifest.json | 15 +++++++++++++++ 2 files changed, 15 insertions(+) create mode 100644 gmcr.js create mode 100644 manifest.json diff --git a/gmcr.js b/gmcr.js new file mode 100644 index 0000000..e69de29 diff --git a/manifest.json b/manifest.json new file mode 100644 index 0000000..c320167 --- /dev/null +++ b/manifest.json @@ -0,0 +1,15 @@ +{ + "manifest_version": 2, + "name": "Google Meet Caption Regex", + "version": "1.0", + + "description": "Send a notification when a caption in Google Meet matches a certain regex.", + + "content_scripts": [ + { + "matches": ["https://meet.google.com/*"], + "js": ["gmcr.js"] + } + ] + +}