diff --git a/package.json b/package.json index 899acdc2..da077d45 100644 --- a/package.json +++ b/package.json @@ -56,7 +56,7 @@ "start": "webpack serve", "build": "webpack --mode=production", "chrome": "cp manifest/chrome.json build/manifest.json && cp -r manifest/_locales build/_locales && cp manifest/background-chrome.js build/background-chrome.js", - "firefox": "rm -rf build/_locales && cp manifest/firefox.json build/manifest.json" + "firefox": "rm -rf build/_locales && cp manifest/firefox.json build/manifest.json && cp manifest/background-firefox.js build/background-firefox.js" }, "browserslist": { "production": [ diff --git a/src/components/modals/main/settings/sections/Stats.jsx b/src/components/modals/main/settings/sections/Stats.jsx index 74b904e8..d69d65c9 100644 --- a/src/components/modals/main/settings/sections/Stats.jsx +++ b/src/components/modals/main/settings/sections/Stats.jsx @@ -44,7 +44,9 @@ export default class Stats extends React.PureComponent {
Backgrounds favourited: {this.state.stats.feature ? this.state.stats.feature['background-favourite'] || 0 : 0}
Backgrounds downloaded: {this.state.stats.feature ? this.state.stats.feature['background-download'] || 0 : 0}
Quotes favourited: {this.state.stats.feature ? this.state.stats.feature['quoted-favourite'] || 0 : 0}
+Quick links added: {this.state.stats.feature ? this.state.stats.feature['quicklink-add'] || 0 : 0}
Settings changed: {this.state.stats.setting ? Object.keys(this.state.stats.setting).length : 0}
+Add-ons installed: {this.state.stats.marketplace ? this.state.stats.marketplace['install'] : 0}
Turning this off will clear your statistics locally, but will not delete the anonymous data posted to umami.
>