fix whitespace and update version to current release

This commit is contained in:
Jason Barnabe 2014-02-07 21:51:11 -06:00
parent 90ae3b8d88
commit 5950bf2d48

View File

@ -1,40 +1,40 @@
{ {
"name": "Stylish", "name": "Stylish",
"version": "1.1", "version": "1.2",
"description": "__MSG_description__", "description": "__MSG_description__",
"homepage_url": "http://userstyles.org", "homepage_url": "http://userstyles.org",
"manifest_version": 2, "manifest_version": 2,
"icons": { "icons": {
"16": "16.png", "16": "16.png",
"48": "48.png", "48": "48.png",
"128": "128.png" "128": "128.png"
}, },
"permissions": [ "permissions": [
"tabs", "tabs",
"http://userstyles.org/" "http://userstyles.org/"
], ],
"background": { "background": {
"page": "background.html" "page": "background.html"
}, },
"content_scripts": [ "content_scripts": [
{ {
"matches": ["http://*/*", "https://*/*"], "matches": ["http://*/*", "https://*/*"],
"run_at": "document_start", "run_at": "document_start",
"all_frames": true, "all_frames": true,
"js": ["apply.js"] "js": ["apply.js"]
}, },
{ {
"matches": ["http://userstyles.org/*", "http://userstyles.local/*"], "matches": ["http://userstyles.org/*", "http://userstyles.local/*"],
"run_at": "document_end", "run_at": "document_end",
"all_frames": false, "all_frames": false,
"js": ["install.js"] "js": ["install.js"]
} }
], ],
"options_page": "manage.html", "options_page": "manage.html",
"browser_action": { "browser_action": {
"default_icon": "19.png", "default_icon": "19.png",
"default_title": "Stylish", "default_title": "Stylish",
"default_popup": "popup.html" "default_popup": "popup.html"
}, },
"default_locale": "en" "default_locale": "en"
} }