Skip to content

Commit

Permalink
feat: add icons
Browse files Browse the repository at this point in the history
  • Loading branch information
jamezrin committed May 28, 2024
1 parent 0784730 commit e3714a9
Show file tree
Hide file tree
Showing 7 changed files with 25 additions and 7 deletions.
Binary file added src/icons/icon-x128.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/icons/icon-x16.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/icons/icon-x256.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/icons/icon-x48.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/icons/icon-x512.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/icons/keycard.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
32 changes: 25 additions & 7 deletions src/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,25 +3,43 @@
"manifest_version": 3,
"name": "Rust Companion Authenticator",
"version": "0.0.1",
"permissions": ["clipboardWrite"],
"permissions": [
"clipboardWrite"
],
"background": {
"service_worker": "background.ts",
"type": "module"
},
"icons": {
"256": "icons/icon-x256.png",
"128": "icons/icon-x128.png",
"48": "icons/icon-x48.png",
"16": "icons/icon-x16.png"
},
"action": {
"default_title": "Rust Companion Authenticator"
},
"content_scripts": [
{
"matches": ["https://companion-rust.facepunch.com/app*"],
"js": ["auth-hook-content-script.ts"],
"matches": [
"https://companion-rust.facepunch.com/app*"
],
"js": [
"auth-hook-content-script.ts"
],
"run_at": "document_start",
"world": "MAIN"
},
{
"matches": ["https://companion-rust.facepunch.com/app*"],
"js": ["content-script.ts"],
"css": ["content-script.scss"]
"matches": [
"https://companion-rust.facepunch.com/app*"
],
"js": [
"content-script.ts"
],
"css": [
"content-script.scss"
]
}
]
}
}

0 comments on commit e3714a9

Please sign in to comment.