diff options
-rw-r--r-- | manifest/manifest.json | 2 | ||||
-rw-r--r-- | public/help/index.html | 1 | ||||
-rw-r--r-- | public/options/options.html | 1 | ||||
-rw-r--r-- | public/permissions/index.html | 1 | ||||
-rw-r--r-- | public/popup.html | 1 | ||||
-rw-r--r-- | public/upsell/index.html | 1 | ||||
-rw-r--r-- | src/utils.ts | 1 |
7 files changed, 0 insertions, 8 deletions
diff --git a/manifest/manifest.json b/manifest/manifest.json index 6cef9ee8..19683b87 100644 --- a/manifest/manifest.json +++ b/manifest/manifest.json @@ -13,7 +13,6 @@ ], "all_frames": true, "js": [ - "./js/vendor.js", "./js/content.js" ], "css": [ @@ -121,7 +120,6 @@ }, "background": { "scripts":[ - "./js/vendor.js", "./js/background.js" ] }, diff --git a/public/help/index.html b/public/help/index.html index ee886089..f3ac8212 100644 --- a/public/help/index.html +++ b/public/help/index.html @@ -8,7 +8,6 @@ <link href="styles.css" rel="stylesheet"/> - <script src="../js/vendor.js"></script> <script src="../js/help.js"></script> </head> diff --git a/public/options/options.html b/public/options/options.html index dfaf7856..825e8b75 100644 --- a/public/options/options.html +++ b/public/options/options.html @@ -9,7 +9,6 @@ <link href="options.css" rel="stylesheet"/> - <script src="../js/vendor.js"></script> <script src="../js/options.js"></script> </head> diff --git a/public/permissions/index.html b/public/permissions/index.html index bf854248..5c366986 100644 --- a/public/permissions/index.html +++ b/public/permissions/index.html @@ -6,7 +6,6 @@ <link href="styles.css" rel="stylesheet"/> - <script src="../js/vendor.js"></script> <script src="../js/permissions.js"></script> </head> diff --git a/public/popup.html b/public/popup.html index 84f5f714..c7d5620c 100644 --- a/public/popup.html +++ b/public/popup.html @@ -202,7 +202,6 @@ </div> <!-- Scripts that need to load after the html --> - <script src="./js/vendor.js" async></script> <script src="./js/popup.js" async></script> </body> </html> diff --git a/public/upsell/index.html b/public/upsell/index.html index 34352550..76f3644f 100644 --- a/public/upsell/index.html +++ b/public/upsell/index.html @@ -6,7 +6,6 @@ <link href="styles.css" rel="stylesheet" /> - <script src="../js/vendor.js"></script> <script src="../js/upsell.js"></script> </head> diff --git a/src/utils.ts b/src/utils.ts index 0afc1a6a..92e29d8b 100644 --- a/src/utils.ts +++ b/src/utils.ts @@ -15,7 +15,6 @@ export default class Utils { // Used to add content scripts and CSS required js = [ - "./js/vendor.js", "./js/content.js" ]; css = [ |