diff options
| author | LLLL Colonq <llll@colonq> | 2024-11-05 02:58:33 -0500 |
|---|---|---|
| committer | LLLL Colonq <llll@colonq> | 2024-11-05 02:58:33 -0500 |
| commit | cf0070ac5a78d8042fa74d407fb9cb65352e2066 (patch) | |
| tree | 85fb5cee6c7533b7ae6de846ed447772d7b67296 /extension/manifest.dhall | |
Initial commit
Diffstat (limited to 'extension/manifest.dhall')
| -rw-r--r-- | extension/manifest.dhall | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/extension/manifest.dhall b/extension/manifest.dhall new file mode 100644 index 0000000..cf9e7a1 --- /dev/null +++ b/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 = ["config.js", "main.js"] + , css = ["main.css"] + , run_at = "document_end" + } + ] +}
\ No newline at end of file |
