From 6183a0bb3caf4805ed4242a4ac104b9890db3601 Mon Sep 17 00:00:00 2001 From: Teddy Wing Date: Sat, 23 May 2015 15:48:50 -0400 Subject: manifest.json: Fix `content_scripts` script definition syntax The scripts need to be defined in the "js" key. All these syntax errors are because this block used to be a "background" definition but I changed it to "content_scripts". --- manifest.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manifest.json b/manifest.json index 150f2f1..f293dd7 100644 --- a/manifest.json +++ b/manifest.json @@ -7,6 +7,6 @@ "content_scripts": [{ "matches": [""], - "scripts": ["peniquitous.js"] + "js": ["peniquitous.js"] }] } -- cgit v1.2.3