Skip to content

Commit e692b03

Browse files
authored
Merge pull request #62 from Revadike/web-extension
2 parents f47857d + 2485145 commit e692b03

21 files changed

+5521
-1076
lines changed

.eslintrc

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,23 @@
11
{
22
"env": {
3-
"greasemonkey": true,
4-
"jquery": true,
53
"browser": true,
64
"commonjs": true,
75
"es6": true,
86
"es2017": true,
97
"es2020": true,
10-
"es2021": true
8+
"es2021": true,
9+
"node": true,
10+
"webextensions": true
1111
},
1212
"extends": "eslint:recommended",
1313
"parser": "@babel/eslint-parser",
1414
"parserOptions": {
1515
"requireConfigFile": false
1616
},
17-
17+
"globals": {
18+
"importScripts": "readonly",
19+
"ext": "readonly"
20+
},
1821
"rules": {
1922
"accessor-pairs": ["error"],
2023
"array-bracket-newline": ["error", {

.gitignore

Lines changed: 134 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,134 @@
1+
manifest.json
2+
bin/
3+
build/
4+
5+
# Logs
6+
logs
7+
*.log
8+
npm-debug.log*
9+
yarn-debug.log*
10+
yarn-error.log*
11+
lerna-debug.log*
12+
.pnpm-debug.log*
13+
14+
# Diagnostic reports (https://nodejs.org/api/report.html)
15+
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
16+
17+
# Runtime data
18+
pids
19+
*.pid
20+
*.seed
21+
*.pid.lock
22+
23+
# Directory for instrumented libs generated by jscoverage/JSCover
24+
lib-cov
25+
26+
# Coverage directory used by tools like istanbul
27+
coverage
28+
*.lcov
29+
30+
# nyc test coverage
31+
.nyc_output
32+
33+
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
34+
.grunt
35+
36+
# Bower dependency directory (https://bower.io/)
37+
bower_components
38+
39+
# node-waf configuration
40+
.lock-wscript
41+
42+
# Compiled binary addons (https://nodejs.org/api/addons.html)
43+
build/Release
44+
45+
# Dependency directories
46+
node_modules/
47+
jspm_packages/
48+
49+
# Snowpack dependency directory (https://snowpack.dev/)
50+
web_modules/
51+
52+
# TypeScript cache
53+
*.tsbuildinfo
54+
55+
# Optional npm cache directory
56+
.npm
57+
58+
# Optional eslint cache
59+
.eslintcache
60+
61+
# Optional stylelint cache
62+
.stylelintcache
63+
64+
# Microbundle cache
65+
.rpt2_cache/
66+
.rts2_cache_cjs/
67+
.rts2_cache_es/
68+
.rts2_cache_umd/
69+
70+
# Optional REPL history
71+
.node_repl_history
72+
73+
# Output of 'npm pack'
74+
*.tgz
75+
76+
# Yarn Integrity file
77+
.yarn-integrity
78+
79+
# dotenv environment variable files
80+
.env
81+
.env.development.local
82+
.env.test.local
83+
.env.production.local
84+
.env.local
85+
86+
# parcel-bundler cache (https://parceljs.org/)
87+
.cache
88+
.parcel-cache
89+
90+
# Next.js build output
91+
.next
92+
out
93+
94+
# Nuxt.js build / generate output
95+
.nuxt
96+
dist
97+
98+
# Gatsby files
99+
.cache/
100+
# Comment in the public line in if your project uses Gatsby and not Next.js
101+
# https://nextjs.org/blog/next-9-1#public-directory-support
102+
# public
103+
104+
# vuepress build output
105+
.vuepress/dist
106+
107+
# vuepress v2.x temp and cache directory
108+
.temp
109+
.cache
110+
111+
# Docusaurus cache and generated files
112+
.docusaurus
113+
114+
# Serverless directories
115+
.serverless/
116+
117+
# FuseBox cache
118+
.fusebox/
119+
120+
# DynamoDB Local files
121+
.dynamodb/
122+
123+
# TernJS port file
124+
.tern-port
125+
126+
# Stores VSCode versions used for testing VSCode extensions
127+
.vscode-test
128+
129+
# yarn v2
130+
.yarn/cache
131+
.yarn/unplugged
132+
.yarn/build-state.yml
133+
.yarn/install-state.gz
134+
.pnp.*

.vscode/settings.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"ltex.enabled": false
3+
}

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2019 Revadike
3+
Copyright (c) 2023 Revadike
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

Lines changed: 9 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,20 @@
11

2-
# [UserScript] Steam Web Integration
3-
2+
# Steam Web Integration
43

54
[![GitHub license](https://img.shields.io/github/license/Revadike/SteamWebIntegration)](https://github.com/Revadike/SteamWebIntegration/blob/master/LICENSE)
65
[![GitHub issues](https://img.shields.io/github/issues/Revadike/SteamWebIntegration)](https://github.com/Revadike/SteamWebIntegration/issues)
76
[![GitHub stars](https://img.shields.io/github/stars/Revadike/SteamWebIntegration)](https://github.com/Revadike/SteamWebIntegration/stargazers)
87
[![Github stable release downloads](https://img.shields.io/github/downloads/Revadike/SteamWebIntegration/latest/total.svg?label=Downloads&maxAge=600)](https://github.com/Revadike/SteamWebIntegration/releases/latest)
98
[![GitHub stable release date](https://img.shields.io/github/release-date/Revadike/SteamWebIntegration.svg?label=Released&maxAge=600)](https://github.com/Revadike/SteamWebIntegration/releases/latest)
109
[![GitHub stable release version](https://img.shields.io/github/release/Revadike/SteamWebIntegration.svg?label=Stable&maxAge=600)](https://github.com/Revadike/SteamWebIntegration/releases/latest)
11-
[![Bitcoin donate](https://img.shields.io/badge/Bitcoin-donate-yellow.svg)](https://www.blockchain.com/btc/payment_request?address=133YTipt9VUuB7EsYnkPFuVGutNc9UzswF)
1210
[![Steam donate](https://img.shields.io/badge/Steam-donate-yellow.svg)](https://steamcommunity.com/tradeoffer/new/?partner=82699538&token=V7DQVtra)
1311

1412

1513
> Integrate your personal Steam information on the web, at your convenience!
1614
>
1715
1816
## Screenshot
19-
![image](https://user-images.githubusercontent.com/4411977/116749354-1a6d6c00-aa01-11eb-8f5c-ae7a6936532a.png)
17+
![image](https://user-images.githubusercontent.com/4411977/221296248-1abfbc0a-bb3b-409f-bb97-639593e85379.png)
2018

2119
## Features
2220
* Checks web pages for links or images of steam games or DLC
@@ -33,30 +31,17 @@
3331
* Steam Trading Cards
3432
* Game bundle history
3533
* Caching of data
36-
* Support for dynamically changing web content
37-
* Context menu options
38-
* Highly configurable ([here](https://revadike.com/swi/settings/))
39-
40-
## Prerequisites
41-
* Userscript manager, such as [Tampermonkey](http://tampermonkey.net/) (recommended)
42-
43-
## Download
44-
* [Direct download](https://github.com/Revadike/SteamWebIntegration/raw/master/Steam%20Web%20Integration.user.js) (latest)
45-
* [All releases](https://github.com/Revadike/SteamWebIntegration/releases)
34+
* Support for dynamically changing web content (**Currently unavailable**)
35+
* Context menu options (**Currently unavailable**)
36+
* Highly configurable
4637

4738
## FAQ
4839

49-
### How do I change the settings?
50-
Right [here](https://revadike.com/swi/settings/).
51-
52-
### How can I blacklist a domain?
53-
Right [here](https://revadike.com/swi/settings/).
54-
55-
### Why are the ownership/wishlist icons not working or incorrect?
56-
Make sure you are logged in to steam with the right account in your web browser and visit [this page](http://store.steampowered.com/dynamicstore/userdata/) and refresh until you can see all your data is loaded (you will see [this](https://i.imgur.com/ShKcuay.png) if it is not loaded). If that does not work, try factory reset.
40+
### Why does it not work?
41+
Make sure you are logged in to steam with the right account in your web browser and visit [this page](http://store.steampowered.com/dynamicstore/userdata/) and refresh until you can see all your data is loaded (you will see [this](https://i.imgur.com/ShKcuay.png) if it is _not_ loaded). If that does not work, try factory reset.
5742

58-
### Why doesn't it work for me?
59-
I don't know. Try factory reset. Otherwise, be sure to contact me and provide me the log/error from the JavaScript console, if there is any.
43+
### Why does it _still_ not work?
44+
I don't know. Try factory reset. Otherwise, be sure to contact me and provide me the log/error from the extension, if there is any.
6045
Post it [here](https://github.com/Revadike/SteamWebIntegration/issues).
6146

6247
### Can I suggest a feature?

0 commit comments

Comments
 (0)