diff --git a/README.md b/README.md index 1b1bbbe..5d3e1d3 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ Get the extension on the [Firefox Browser Add-ons](https://addons.mozilla.org/en #### Google Chrome -1. Download the repo by using `git clone https://github.com/giacomoferretti/forks-diff-chrome` +1. Download the repo by using `git clone https://github.com/giacomoferretti/forks-diff` 2. Visit `chrome://extensions/` in Google Chrome 3. Enable "Developer mode" 4. Click on "Load unpacked" diff --git a/js/main.js b/js/main.js index 41678a2..8a973f4 100644 --- a/js/main.js +++ b/js/main.js @@ -133,9 +133,7 @@ const forksDiff = (function () { }; const replaceStateListener = () => { - if (githubUrlRegex.test(location.href)) { - addButton(); - } + addButton(); }; return { diff --git a/manifest.json b/manifest.json index 182952d..e03ce87 100644 --- a/manifest.json +++ b/manifest.json @@ -1,7 +1,7 @@ { "manifest_version": 3, "name": "__MSG_appName__", - "version": "1.2.0", + "version": "1.2.1", "description": "__MSG_appDescription__", "default_locale": "en", "icons": { diff --git a/pack.sh b/pack.sh index 97dc655..472c810 100755 --- a/pack.sh +++ b/pack.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash -VERSION="1.2.0-chrome" +VERSION="1.2.1-chrome" ICONS_SIZES="16 32 48 64 128" OUTPUT_FOLDER=".build"