From bbaeb51ed36c14a035a369b0a35fa0a7a1a1a49d Mon Sep 17 00:00:00 2001 From: Ceda EI Date: Mon, 7 Sep 2020 20:04:55 +0530 Subject: [PATCH] Add icon. --- icons/gmcr.svg | 104 +++++++++++++++++++++++++++++++++++++++++++++++++ manifest.json | 25 +++++++----- 2 files changed, 119 insertions(+), 10 deletions(-) create mode 100644 icons/gmcr.svg diff --git a/icons/gmcr.svg b/icons/gmcr.svg new file mode 100644 index 0000000..4196419 --- /dev/null +++ b/icons/gmcr.svg @@ -0,0 +1,104 @@ + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + / + / + + diff --git a/manifest.json b/manifest.json index c320167..8e7ea40 100644 --- a/manifest.json +++ b/manifest.json @@ -1,15 +1,20 @@ { - "manifest_version": 2, - "name": "Google Meet Caption Regex", - "version": "1.0", + "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.", + "description": "Send a notification when a caption in Google Meet matches a certain regex.", - "content_scripts": [ - { - "matches": ["https://meet.google.com/*"], - "js": ["gmcr.js"] - } - ] + "icons": { + "48": "icons/gmcr.svg", + "96": "icons/gmcr.svg" + }, + + "content_scripts": [ + { + "matches": ["https://meet.google.com/*"], + "js": ["gmcr.js"] + } + ] }