From b06b1e9fc7bab90040eddb1d635f244a5bc3c227 Mon Sep 17 00:00:00 2001 From: Vasily Galkin Date: Fri, 27 Sep 2019 13:26:40 +0300 Subject: [PATCH] Fix loading unpacked extension (broken since deletion of background.html) "trackmenot.js" specified directly in manifest instead of putting it in background.html --- manifest.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/manifest.json b/manifest.json index 1b2dbe8..a58822b 100644 --- a/manifest.json +++ b/manifest.json @@ -1,7 +1,8 @@ { "author": "TrackMeNot", "background": { - "page": "background.html" + "persistent": true, + "scripts": [ "trackmenot.js" ] }, "browser_action": { "default_icon": "tmn.png",