Compare commits
2 Commits
ce720da6fd
...
f263c0358f
Author | SHA1 | Date |
---|---|---|
Nes370 | f263c0358f | |
Nes370 | 1b7ad15d06 |
|
@ -1,7 +1,7 @@
|
||||||
{
|
{
|
||||||
"manifest_version": 3,
|
"manifest_version": 3,
|
||||||
"name": "SGDB Button on Steam",
|
"name": "SGDB Button on Steam",
|
||||||
"version": "1.0.1",
|
"version": "1.0.2",
|
||||||
"description": "Adds a button on Steam game pages to bring you to its SteamGridDB entry.",
|
"description": "Adds a button on Steam game pages to bring you to its SteamGridDB entry.",
|
||||||
"icons": {
|
"icons": {
|
||||||
"16": "icons/icon_16.png",
|
"16": "icons/icon_16.png",
|
||||||
|
@ -31,7 +31,7 @@
|
||||||
],
|
],
|
||||||
"web_accessible_resources": [
|
"web_accessible_resources": [
|
||||||
{
|
{
|
||||||
"resources": [ "icons/sgdb_16.png", "icons/nes_32.png" ],
|
"resources": [ "icons/sgdb_16.png" ],
|
||||||
"matches": [ "*://store.steampowered.com/app/*", "*://steamcommunity.com/app/*" ]
|
"matches": [ "*://store.steampowered.com/app/*", "*://steamcommunity.com/app/*" ]
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|
13
popup.html
13
popup.html
|
@ -41,20 +41,11 @@
|
||||||
height: 22px;
|
height: 22px;
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
<script>
|
<script src="popup.js" defer></script>
|
||||||
document.addEventListener("DOMContentLoaded", function() {
|
|
||||||
const headerIcon = document.querySelector("#sgdb-icon");
|
|
||||||
const nesIcon = document.querySelector("#nes-icon");
|
|
||||||
const giteaIcon = document.createElement("#gitea-icon");
|
|
||||||
headerIcon.src = browser.runtime.getURL("icons/icon_32.png");
|
|
||||||
nesIcon.src = browser.runtime.getURL("icons/nes_32.png");
|
|
||||||
giteaIcon.src = browser.runtime.getURL("icons/gitea_32.png");
|
|
||||||
});
|
|
||||||
</script>
|
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<h2>
|
<h2>
|
||||||
<img id="header-icon" src="" style="vertical-align: middle; display: inline"> SGBD Button on Steam
|
<img id="sgdb-icon" src="" style="vertical-align: middle; display: inline"> SGBD Button on Steam
|
||||||
</h2>
|
</h2>
|
||||||
<a class="btn" href="https://www.steamgriddb.com/profile/76561198274324627">
|
<a class="btn" href="https://www.steamgriddb.com/profile/76561198274324627">
|
||||||
<span data-tooltip-text="View my profile">
|
<span data-tooltip-text="View my profile">
|
||||||
|
|
|
@ -0,0 +1,8 @@
|
||||||
|
document.addEventListener("DOMContentLoaded", function() {
|
||||||
|
const headerIcon = document.querySelector("#sgdb-icon");
|
||||||
|
const nesIcon = document.querySelector("#nes-icon");
|
||||||
|
const giteaIcon = document.querySelector("#gitea-icon");
|
||||||
|
headerIcon.src = browser.runtime.getURL("icons/icon_32.png");
|
||||||
|
nesIcon.src = browser.runtime.getURL("icons/nes_32.png");
|
||||||
|
giteaIcon.src = browser.runtime.getURL("icons/gitea_32.png");
|
||||||
|
});
|
Loading…
Reference in New Issue