Skip to content

Commit a87a3c9

Browse files
committed
V2.1.0
1 parent 89c1298 commit a87a3c9

12 files changed

+432
-356
lines changed

README.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,11 @@
1616
## Screenshot
1717
![image](https://user-images.githubusercontent.com/4411977/221296248-1abfbc0a-bb3b-409f-bb97-639593e85379.png)
1818

19+
## Download
20+
21+
* [FireFox Addon](https://addons.mozilla.org/en-US/firefox/addon/steam-web-integration/)
22+
* [Chrome Extension](https://chrome.google.com/webstore/detail/steam-web-integration/bcjlaaocogjkkhbmjhlhonmpnngnlogn)
23+
1924
## Features
2025
* Checks web pages for links or images of steam games or DLC
2126
* Displays informative icons next to the link or image
@@ -31,8 +36,8 @@
3136
* Steam Trading Cards
3237
* Game bundle history
3338
* Caching of data
34-
* Support for dynamically changing web content (**Currently unavailable**)
35-
* Context menu options (**Currently unavailable**)
39+
* Support for dynamically changing web content
40+
* Context menu options
3641
* Highly configurable
3742

3843
## FAQ

css/popup.css

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,38 +2,37 @@
22
display: flex;
33
align-items: center;
44
justify-content: center;
5+
text-align: center;
56
}
67

7-
8-
#actions {
8+
.action-buttons {
99
display: flex;
1010
flex-direction: row;
1111
justify-content: space-between;
1212
align-items: center;
1313
margin: 0 0 10px 0;
1414
}
1515

16-
#actions button {
16+
.action-buttons button {
1717
width: 100%;
1818
font-size: large;
1919
padding: 10px;
2020
margin: 0 5px;
2121
}
2222

23-
24-
#actions button:hover {
23+
.action-buttons button:hover {
2524
cursor: pointer;
2625
}
2726

28-
#actions button:active {
27+
.action-buttons button:active {
2928
background-color: #e6e6e6;
3029
}
3130

32-
#actions button:focus {
31+
.action-buttons button:focus {
3332
outline: none;
3433
}
3534

36-
#actions button:disabled {
35+
.action-buttons button:disabled {
3736
background-color: #e6e6e6;
3837
color: #999999;
3938
cursor: not-allowed;
@@ -171,6 +170,7 @@ pre kbd {
171170
font-size: 100%;
172171
}
173172

173+
body,
174174
table {
175175
border-collapse: collapse;
176176
margin: 25px 0;

images/icon128.png

9.44 KB
Loading

images/icon16.png

1.02 KB
Loading

images/icon256.png

19.9 KB
Loading

images/icon32.png

1.94 KB
Loading

images/icon48.png

3.04 KB
Loading

manifest.chromium.json

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,14 @@
88
"action": {
99
"default_popup": "popup.html",
1010
"default_title": "Steam Web Integration",
11-
"default_icon": "images/icon.svg"
11+
"default_icon": "images/icon256.png"
1212
},
1313
"icons": {
14-
"48": "images/icon.svg"
14+
"16": "images/icon16.png",
15+
"32": "images/icon32.png",
16+
"48": "images/icon48.png",
17+
"128": "images/icon128.png",
18+
"256": "images/icon256.png"
1519
},
1620
"content_scripts": [
1721
{
@@ -50,11 +54,10 @@
5054
],
5155
"permissions": [
5256
"storage",
53-
"unlimitedStorage"
57+
"unlimitedStorage",
58+
"contextMenus"
5459
],
5560
"host_permissions": [
56-
"https://bartervg.com/*",
57-
"https://store.steampowered.com/*",
58-
"https://steam-tracker.com/*"
61+
"https://store.steampowered.com/*"
5962
]
6063
}

manifest.firefox.json

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,14 @@
1313
"action": {
1414
"default_popup": "popup.html",
1515
"default_title": "Steam Web Integration",
16-
"default_icon": "images/icon.svg"
16+
"default_icon": "images/icon256.png"
1717
},
1818
"icons": {
19-
"48": "images/icon.svg"
19+
"16": "images/icon16.png",
20+
"32": "images/icon32.png",
21+
"48": "images/icon48.png",
22+
"128": "images/icon128.png",
23+
"256": "images/icon256.png"
2024
},
2125
"content_scripts": [
2226
{
@@ -57,11 +61,10 @@
5761
],
5862
"permissions": [
5963
"storage",
60-
"unlimitedStorage"
64+
"unlimitedStorage",
65+
"contextMenus"
6166
],
6267
"host_permissions": [
63-
"https://bartervg.com/*",
64-
"https://store.steampowered.com/*",
65-
"https://steam-tracker.com/*"
68+
"https://store.steampowered.com/*"
6669
]
6770
}

0 commit comments

Comments
 (0)