From 1d4c531729991813e63268695aaf2c080eaf37b5 Mon Sep 17 00:00:00 2001 From: ictinus Date: Sat, 19 Jul 2014 21:28:17 +1000 Subject: [PATCH] Update manifest, ready for v1.2.0 --- manifest.json | 23 +++++++++++++++-------- 1 file changed, 15 insertions(+), 8 deletions(-) diff --git a/manifest.json b/manifest.json index 7edb7b0..cd67d31 100644 --- a/manifest.json +++ b/manifest.json @@ -4,28 +4,35 @@ "content_scripts": [ { "exclude_globs": [ ], "include_globs": [ "*" ], - "css": [ "loadxml.css" ], - "js": [ "injector.js" ], + "css": [ "loadxml.css" + ], + "js": [ "embeddedXMLViewer.js", + "encoder.js", + "loadxml.js" ], "matches": [ "file://*/*", "http://*/teamworks/debug.lsw*", "https://*/teamworks/debug.lsw*" ], "run_at": "document_end" } ], + "background": { + "scripts": [ "options.js" ], + "persistent": false + }, "web_accessible_resources": [ - "encoder.js", - "loadxml.js", - "embeddedXMLViewer.js" + + ], + "permissions": [ + "storage" ], "icons": { "16": "bug_iibpd_16.png", "32": "bug_iibpd_32.png", "48": "bug_iibpd_48.png", "128": "bug_iibpd_128.png" }, "browser_action": { - "default_icon": { "19": "bug_iibpd_32.png", "38": "bug_iibpd_48.png"}, + "default_icon": { "19": "bug_iibpd_19.png", "38": "bug_iibpd_38.png"}, "default_title": "Configure iibpd", "default_popup": "options.html" }, "options_page": "options.html", - "converted_from_user_script": true, "description": "Convert HTML encoded XML in 'pre' elements to a colourised, collapsible view. Intended for use with IBM BPM Debug output. Also adds hotkeys for 'Step Over' (SHIFT-S), 'Step' (S, Enter, or Right Arrow), and 'Run' (R). Based on Lev Muchnik's LoadXML, and using Robert Reid's htmlEncode.", "name": "Embedded XML Viewer", - "version": "1.1" + "version": "1.2.0" }