From 4eb2de367258bebc700c25bb9f5e0834d017ad2d Mon Sep 17 00:00:00 2001 From: snowsunny Date: Mon, 23 Oct 2017 19:49:17 +0900 Subject: [PATCH] fix manifest --- narou-reader/manifest.json | 3 ++- src/manifest.cson | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/narou-reader/manifest.json b/narou-reader/manifest.json index 27d6fd0..21395aa 100644 --- a/narou-reader/manifest.json +++ b/narou-reader/manifest.json @@ -6,7 +6,8 @@ "content_scripts": [ { "matches": [ - "http://ncode.syosetu.com/*" + "http://ncode.syosetu.com/*", + "https://ncode.syosetu.com/*" ], "run_at": "document_end", "js": [ diff --git a/src/manifest.cson b/src/manifest.cson index a492949..066eaee 100644 --- a/src/manifest.cson +++ b/src/manifest.cson @@ -5,7 +5,7 @@ version: '1.0.0' description: 'Webpage reader for http://syosetu.com' content_scripts: [ - matches: ['http://ncode.syosetu.com/*'] + matches: ['http://ncode.syosetu.com/*', 'https://ncode.syosetu.com/*'] run_at: 'document_end' js: ['content.js'] ]