diff --git a/package.json b/package.json index 88edd62..ebb7c0d 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "lightbeam-we", - "version": "2.0.0", + "version": "2.0.1", "description": "Firefox Lightbeam web extension", "main": "background.js", "scripts": { diff --git a/src/js/background.js b/src/js/background.js index 357a9d0..f276d65 100644 --- a/src/js/background.js +++ b/src/js/background.js @@ -1,9 +1,11 @@ 'use strict'; async function checkFirstRun() { +/* if (await store.isFirstRun()) { browser.tabs.create({ url: 'first-run.html' }); } + */ } checkFirstRun(); diff --git a/src/manifest.json b/src/manifest.json index 42fc9fa..e24782a 100644 --- a/src/manifest.json +++ b/src/manifest.json @@ -1,7 +1,7 @@ { "manifest_version": 2, "name": "Firefox Lightbeam", - "version": "2.0.0", + "version": "2.0.1", "description": "Firefox Lightbeam is a Firefox browser extension that uses interactive visualizations to show you the relationships between third parties and the sites you visit.", "homepage_url": "https://github.com/mozilla/lightbeam-we",