summaryrefslogtreecommitdiff
path: root/fig-frontend-client/extension/manifest.dhall
diff options
context:
space:
mode:
authorLLLL Colonq <llll@colonq>2024-03-19 03:37:33 -0400
committerLLLL Colonq <llll@colonq>2024-03-19 03:37:33 -0400
commitfbabf1d29a8a97d57d9609666c81701fe12979e1 (patch)
treec9e7f4c0185dedf084558aeeea69140a326a19ef /fig-frontend-client/extension/manifest.dhall
parent7aa60d33eff21ccdaa31ccd5dd64196990bb3dea (diff)
Update
Diffstat (limited to 'fig-frontend-client/extension/manifest.dhall')
-rw-r--r--fig-frontend-client/extension/manifest.dhall30
1 files changed, 30 insertions, 0 deletions
diff --git a/fig-frontend-client/extension/manifest.dhall b/fig-frontend-client/extension/manifest.dhall
new file mode 100644
index 0000000..87c48f6
--- /dev/null
+++ b/fig-frontend-client/extension/manifest.dhall
@@ -0,0 +1,30 @@
+{ manifest_version = 2
+, name = "computerspotting"
+, version = "1.0"
+, description = "spot the computer"
+, icons =
+ [ { mapKey = "48", mapValue = "assets/mrgreen.png" }
+ ]
+, web_accessible_resources =
+ [ "mrgreen.png"
+ , "mrblue.png"
+ ]
+, permissions =
+ [ "webRequest"
+ , "webRequestBlocking"
+ , "tabs"
+ , "cookies"
+ , "*://*.twitch.tv/*"
+ , "*://api.colonq.computer/*"
+ ]
+, background =
+ { scripts = ["background.js"]
+ }
+, content_scripts =
+ [ { matches = ["*://*.twitch.tv/*"]
+ , js = ["main.js"]
+ , css = ["main.css"]
+ , run_at = "document_end"
+ }
+ ]
+} \ No newline at end of file