Skip to content

Commit e7f70fe

Browse files
committed
Public Display
1 parent fbb4101 commit e7f70fe

File tree

171 files changed

+16058
-2
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

171 files changed

+16058
-2
lines changed

.babelrc

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"presets": [
3+
"@babel/preset-env",
4+
"@babel/preset-react"
5+
// "react-app"
6+
],
7+
"plugins": [
8+
// "@babel/plugin-proposal-class-properties",
9+
"react-hot-loader/babel"
10+
]
11+
}

.gitignore

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
/node_modules
2+
dist
3+
.env
4+
config.env

README.md

+75-2
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,75 @@
1-
# browser-extension
2-
Browser extension source-code
1+
# FACEIT Visuals
2+
3+
> Browser extension that brings more statistics and allows players for a smooth lifestyle on the platform
4+
5+
FaceitVisuals was created using -[FACEIT ENHANCER ](https://github.com/repeekgg) src when got broken after Faceit Updated their platform.
6+
7+
I wanted to bring back the tools we had and after fixing some features of the old one , I started creating some new features on this one ( BanHistory,FaceitOnSteamprofiles, Distinctive Badges for VIP's)
8+
9+
10+
11+
- [Deploy announcement ](https://twitter.com/shadigm_/status/1549802704364605443/ive_developed_faceit_enhancer_to_enhance_the/)
12+
- [First Update afer UI rework ](https://twitter.com/shadigm_/status/1629091622917967872)
13+
14+
# Install
15+
16+
- [Chrome](https://chromewebstore.google.com/detail/faceit-visuals/ngcickocpcongeagbpkejabhkgmcildo)
17+
18+
19+
20+
# Highlights
21+
22+
- See ban history on players profiles
23+
- See badges on important people ( pros,staff,vip's)
24+
- See how much Elo you'll win or loose
25+
- See how much Elo you have won and lost in your match history
26+
- and more!
27+
28+
29+
30+
# Development
31+
32+
Clone repository and install npm dependencies:
33+
34+
```sh
35+
npm install
36+
```
37+
38+
Build the extension into a `dist` folder, webpack will listen for file changes and automatically rebuild:
39+
40+
```sh
41+
npm run build
42+
```
43+
44+
Load into the browser:
45+
46+
<table>
47+
<tr>
48+
<th>Chrome</th>
49+
50+
</tr>
51+
<tr>
52+
<td width="50%">
53+
<ol>
54+
<li>Open <code>chrome://extensions</code>.</li>
55+
<li>Check the <i>Developer mode</i> checkbox.</li>
56+
<li>Click on <i>Load unpacked extension</i>.</li>
57+
<li>Select the <code>dist</code> folder.</li>
58+
</ol>
59+
</td>
60+
</tr>
61+
</table>
62+
63+
Build the extension into a `dist` folder for publishing:
64+
65+
```sh
66+
npm run build
67+
```
68+
69+
# Team
70+
71+
- [Tim Cheung](https://github.com/shadiflo) (Creator & Developer, [@shadi\_](https://twitter.com/shadigm_))
72+
73+
# Disclaimer
74+
75+
FACEIT Visuals is developed independently, and is not officially endorsed by or affiliated with FACEIT.

0 commit comments

Comments
 (0)