Skip to content

Commit

Permalink
fix urls in manifest
Browse files Browse the repository at this point in the history
  • Loading branch information
onikienko committed Feb 4, 2015
1 parent 74ef9cd commit aa61b19
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions manifest.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// NOTE: JSON standart does not allow comments. Remove them
//Manifest Files - http://developer.chrome.com/extensions/manifest.html
//Manifest Files - http://developer.chrome.com/extensions/manifest
{
"name": "__MSG_extName__",
"description": "__MSG_extDescr__",
Expand All @@ -9,7 +9,7 @@
// v. 22 - Alarms API and eventPage
// v. 20 - storage API
// v. 19 - browsing data API, top sites API
// http://developer.chrome.com/extensions/whats_new.html
// http://developer.chrome.com/extensions/whats_new
"minimum_chrome_version": "25",
"default_locale": "en",
"icons": {
Expand Down Expand Up @@ -41,13 +41,13 @@

"background": {
"scripts": ["js/storage.js", "js/background.js"],
// it's eventPage( http://developer.chrome.com/extensions/event_pages.html )
// it's eventPage( http://developer.chrome.com/extensions/event_pages )
// Use 'true' for backgroundPage
"persistent": false
},
"content_scripts": [
{
// http://developer.chrome.com/extensions/match_patterns.html
// http://developer.chrome.com/extensions/match_patterns
"matches": ["http://www.google.com/*"],
"css": ["css/content_script.css"],
"js": ["js/content_script.js"]
Expand All @@ -60,7 +60,7 @@
"pageToOverride": "myPage.html"
},

// http://developer.chrome.com/extensions/contentSecurityPolicy.html
// http://developer.chrome.com/extensions/contentSecurityPolicy
"content_security_policy": "policyString",

"file_browser_handlers": [
Expand Down Expand Up @@ -89,7 +89,7 @@
"offline_enabled": false,

"omnibox": {
// http://developer.chrome.com/extensions/omnibox.html
// http://developer.chrome.com/extensions/omnibox
"keyword": "aString"
},
"plugins": [
Expand All @@ -107,7 +107,7 @@
},

//If you're hosting your own extension or app, you need to add the "update_url"
// http://developer.chrome.com/extensions/autoupdate.html
// http://developer.chrome.com/extensions/autoupdate
"update_url": "http://path/to/updateInfo.xml",

// http://developer.chrome.com/extensions/manifest/web_accessible_resources
Expand Down

0 comments on commit aa61b19

Please sign in to comment.