diff --git a/README.md b/README.md index 2ee1eb45..402db240 100644 --- a/README.md +++ b/README.md @@ -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. diff --git a/manifest.json b/manifest.json index 1b3a4511..82501fc2 100644 --- a/manifest.json +++ b/manifest.json @@ -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", diff --git a/package-lock.json b/package-lock.json index 5657ee0f..f8f8f8a8 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "csfloat-extension", - "version": "3.1.0", + "version": "3.2.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "csfloat-extension", - "version": "3.1.0", + "version": "3.2.0", "license": "MIT", "devDependencies": { "@types/chrome": "^0.0.193", diff --git a/package.json b/package.json index 1a5e5e7f..d8ffc582 100644 --- a/package.json +++ b/package.json @@ -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": { diff --git a/webpack.config.js b/webpack.config.js index 4d026702..aea5bba3 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -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', }, };