Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,26 @@ CSGOFloat has an extension for Firefox/Chrome that lets you fetch floats directl

Please see [`src/`](/src/README.md) for an overview of how the extension works and underlying tech. Contributions are welcome!

### How to Build (Release)

> `npm install`
>
> `npm run build`

The resultant build will be in the `dist/` directory.

Note: You can also use `npm run build_ff` for Firefox

### How to Build (Development)

> `npm install`
>
> `npm run start`

Load the `dist/` directory as a temporary extension in Chrome. Code changes will automatically trigger a re-build.

Note: You can also use `npm run start_ff` for Firefox

## Changelog

See [Releases](https://github.com/csfloat/extension/releases) for release notes.
4 changes: 2 additions & 2 deletions manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
"manifest_version": 3,
"name": "CSFloat Market Checker",
"short_name": "CSFloat",
"version": "3.1.0",
"description": "Dedicated API for fetching the float value, paint seed, and screenshots of CS:GO items on the Steam Market or Inventories",
"version": "3.2.0",
"description": "Shows the float value, paint seed, and screenshots of Counter-Strike (CS:GO & CS2) items on the Steam Market or Inventories",
"icons": {
"16": "icons/16.png",
"48": "icons/48.png",
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "csfloat-extension",
"version": "3.1.0",
"version": "3.2.0",
"description": "Dedicated API for fetching the float value, paint seed, and screenshots of CS:GO items on the Steam Market or Inventories",
"main": ".eslintrc",
"directories": {
Expand Down
2 changes: 1 addition & 1 deletion webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ function convertToFirefoxManifest(manifest) {
};
cp.browser_specific_settings = {
gecko: {
id: 'ff_extension@csfloat.com',
id: '{194d0dc6-7ada-41c6-88b8-95d7636fe43c}',
strict_min_version: '109.0',
},
};
Expand Down