diff options
author | Teddy Wing | 2015-05-23 15:48:50 -0400 |
---|---|---|
committer | Teddy Wing | 2015-05-23 15:48:50 -0400 |
commit | 6183a0bb3caf4805ed4242a4ac104b9890db3601 (patch) | |
tree | f93fc70085dea71b17f7a03f97b7738c3610a529 | |
parent | dab8f6a967d9284a93d061753b937b0eb5a4176a (diff) | |
download | Peniquitous-6183a0bb3caf4805ed4242a4ac104b9890db3601.tar.bz2 |
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".
-rw-r--r-- | manifest.json | 2 |
1 files changed, 1 insertions, 1 deletions
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": ["<all_urls>"], - "scripts": ["peniquitous.js"] + "js": ["peniquitous.js"] }] } |