From dab8f6a967d9284a93d061753b937b0eb5a4176a Mon Sep 17 00:00:00 2001 From: Teddy Wing Date: Sat, 23 May 2015 15:46:33 -0400 Subject: manifest.json: Fix `content_scripts` syntax Apparently it takes an array not a hash. --- manifest.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/manifest.json b/manifest.json index d6f189d..150f2f1 100644 --- a/manifest.json +++ b/manifest.json @@ -5,8 +5,8 @@ "description": "Ubiquitous Ctrl-P & Ctrl-N", "version": "0.0.1", - "content_scripts": { + "content_scripts": [{ "matches": [""], "scripts": ["peniquitous.js"] - } + }] } -- cgit v1.2.3