From eb36fa32f9b4f2279420091d039982af8400e243 Mon Sep 17 00:00:00 2001 From: Dan Clarke Date: Sat, 17 Nov 2018 06:43:29 +0000 Subject: [PATCH] Add manifest_version to Chrome manifest Newer versions of Chrome require this ... https://developer.chrome.com/extensions/manifestVersion Resolves #200 --- src/chrome/manifest.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/chrome/manifest.json b/src/chrome/manifest.json index 5d1efd0..78977c6 100644 --- a/src/chrome/manifest.json +++ b/src/chrome/manifest.json @@ -1,6 +1,7 @@ { "name": "YSlow", "version": "{{YSLOW_VERSION}}", + "manifest_version": 2, "description": "YSlow analyzes web pages and suggests ways to improve their performance based on a set of rules for high performance web pages.", "icons": { "128": "128.png", @@ -33,4 +34,4 @@ "http://*/*", "https://*/*" ] -} \ No newline at end of file +}