From adb84580fb2f5fee0901eb537852c431c7cbe596 Mon Sep 17 00:00:00 2001 From: Kerrick Long Date: Fri, 15 Jul 2011 01:27:18 -0500 Subject: [PATCH] Evidently Google Chrome doesn't like that kind of path anymore. --- manifest.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/manifest.json b/manifest.json index d386f0d..aa900f2 100644 --- a/manifest.json +++ b/manifest.json @@ -3,13 +3,13 @@ "version": "0.4.0", "description": "Easily see how many times URL has been posted to reddit, join the discussion, submit or repost it, and more!", "browser_action": { - "default_icon": "/pix/alien.png", - "popup": "/html/popup.html" + "default_icon": "pix/alien.png", + "popup": "html/popup.html" }, "permissions": [ "http://*.reddit.com/", "tabs" ], - "background_page": "/html/background.html", - "options_page": "/fancy-settings/index.html" + "background_page": "html/background.html", + "options_page": "fancy-settings/index.html" } \ No newline at end of file