From 83c700688a20b6f4940f37e4f172c320fbb7aca7 Mon Sep 17 00:00:00 2001 From: Jake Howard Date: Fri, 21 Aug 2015 09:09:22 +0100 Subject: [PATCH] Fixed problem with content scripts --- firefox/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/firefox/index.js b/firefox/index.js index 475f779..019f1fd 100644 --- a/firefox/index.js +++ b/firefox/index.js @@ -5,7 +5,7 @@ var sites = require("data/site-decoder.json").sites; for (var i = 0; i < sites.length; i++) { pattern = Object.keys(sites[i])[0]; script = sites[i][pattern]; - content_scripts = ["lib/jquery.js", "image_lookup.js", "injections/" + script]; + content_scripts = ["./lib/jquery.js", "./image-lookup.js", "./injections/" + script]; console.log('script ' + script); console.log('pattern ' + pattern); console.log('Content Scripts: ' + content_scripts);