From d6fd7a509d82ef541ff69f3f65e84473ab3503b4 Mon Sep 17 00:00:00 2001 From: David Todd Date: Fri, 13 Mar 2015 20:46:19 -0500 Subject: [PATCH] Update manifest.json This makes it look a little bit nicer instead of rendering everything into a bland popup Signed-off-by: David Todd --- Fox.ci_Chrome_Extension/manifest.json | 40 ++++++++++++++++++--------- 1 file changed, 27 insertions(+), 13 deletions(-) diff --git a/Fox.ci_Chrome_Extension/manifest.json b/Fox.ci_Chrome_Extension/manifest.json index ebd59ba..1d13587 100755 --- a/Fox.ci_Chrome_Extension/manifest.json +++ b/Fox.ci_Chrome_Extension/manifest.json @@ -1,24 +1,38 @@ { "name": "Fox.ci", - "version": "0.0.3", + "version": "0.0.4", "manifest_version": 2, "description": "Fox.ci URL Shortener", "homepage_url": "http://fox.ci", + "background": { + "page": "src/background.html", + "persistent": false + }, + "browser_action": { + "default_icon": "icons/icon19.png", + "default_title": "Fox.ci URL Shortener" + }, + "permissions": [ + "", + "clipboardWrite", + "tabs", + "contextMenus", + "notifications" + ], "icons": { "16": "icons/icon16.png", "48": "icons/icon48.png", "128": "icons/icon128.png" }, - - "browser_action": { - "default_icon": "icons/icon19.png", - "default_title": "Fox.ci URL Shortener", - "default_popup": "src/browser_action/browser_action.html" - }, - "permissions": [ - "clipboardRead", - "clipboardWrite", - "tabs", - "http://fox.ci/*" - ] + "web_accessible_resources": [ + "icons/icon16.png", + "icons/icon48.png", + "icons/icon128.png" + ], + "commands": { + "shortenTab": { + "suggested_key": { "default": "Alt+Shift+L" }, + "description": "Shortens Current Tab" + } + } } \ No newline at end of file