From c4bd153715f320931503525f0eabddf2aa4187f5 Mon Sep 17 00:00:00 2001 From: Austen Morgan Date: Sun, 23 May 2021 22:36:37 -0700 Subject: [PATCH] Fix update checker not loading --- README.md | 1 + package.json | 2 +- src/manifest.json | 6 +++--- src/options.html | 2 +- webpack.config.js | 2 +- 5 files changed, 7 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index a7a507e..e057a6f 100644 --- a/README.md +++ b/README.md @@ -25,6 +25,7 @@ Feel free to contribute with a [pull request](https://github.com/austencm/youtub ## Releases | Version | Date | Changelog | | ----------- | -------------- | --------- | +| **`v2.7.1`** | _May 23, 2021_ | | | **`v2.7.0`** | _May 23, 2021_ | | | **`v2.6.0`** | _Apr 17, 2021_ | | | **`v2.5.2`** | _Oct 22, 2019_ | | diff --git a/package.json b/package.json index 3550164..707611a 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "youtube-auto-like", "description": "Never forget to like a video again.", - "version": "2.7.0", + "version": "2.7.1", "homepage": "https://github.com/austencm/youtube-auto-like", "author": "Austen Morgan (https://github.com/austencm)", "license": "MIT", diff --git a/src/manifest.json b/src/manifest.json index 2519990..44ae76d 100644 --- a/src/manifest.json +++ b/src/manifest.json @@ -2,7 +2,7 @@ "name": "__MSG_appName__", "description": "__MSG_appDesc__", "homepage_url": "https://github.com/austencm/youtube-auto-like", - "version": "2.7.0", + "version": "2.7.1", "manifest_version": 3, "default_locale": "en", "minimum_chrome_version": "88", @@ -23,12 +23,12 @@ "content_scripts": [ { "matches": ["*://youtube.com/*", "*://*.youtube.com/*"], - "js": ["js/content.js"], + "js": ["content.js"], "run_at": "document_end" } ], "background": { - "service_worker": "js/background.js" + "service_worker": "background.js" }, "options_ui": { "page": "options.html" diff --git a/src/options.html b/src/options.html index 77ed665..b6ef77c 100644 --- a/src/options.html +++ b/src/options.html @@ -111,7 +111,7 @@

YouTube Auto Like - + diff --git a/webpack.config.js b/webpack.config.js index 60b7448..eb8da84 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -23,7 +23,7 @@ module.exports = { // Where webpack outputs the assets and bundles output: { path: paths.build, - filename: 'js/[name].js', + filename: '[name].js', }, // Customize the webpack build process