diff options
author | Teddy Wing | 2015-05-23 15:46:33 -0400 |
---|---|---|
committer | Teddy Wing | 2015-05-23 15:46:33 -0400 |
commit | dab8f6a967d9284a93d061753b937b0eb5a4176a (patch) | |
tree | be7a45ea6387fd112f8da97e1d365ccb66ddf010 | |
parent | 4236006cb6f51bef55dd17da0f7c7dd419895376 (diff) | |
download | Peniquitous-dab8f6a967d9284a93d061753b937b0eb5a4176a.tar.bz2 |
manifest.json: Fix `content_scripts` syntax
Apparently it takes an array not a hash.
-rw-r--r-- | manifest.json | 4 |
1 files 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": ["<all_urls>"], "scripts": ["peniquitous.js"] - } + }] } |