Skip to content

Commit

Permalink
Update chrome manifest.json and add images
Browse files Browse the repository at this point in the history
  • Loading branch information
bryceosterhaus committed Mar 23, 2017
1 parent 760f74a commit 67d5927
Show file tree
Hide file tree
Showing 4 changed files with 33 additions and 31 deletions.
Binary file removed frontend/static/icons/metal.png
Binary file not shown.
Binary file added frontend/static/icons/metal_128.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added frontend/static/icons/metal_48.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
64 changes: 33 additions & 31 deletions shells/chrome/manifest.json
Original file line number Diff line number Diff line change
@@ -1,33 +1,35 @@
{
"name": "Metal.js Developer Tools",
"version": "0.0.1",
"manifest_version": 2,
"background": {
"scripts": [ "build/background.js" ],
"persistent": false
},
"browser_action": {
"default_icon": "build/metal.png",
"default_popup": "build/popup.html",
"default_title": "Metal.js Devtools"
},
"description": "Inspect State for Metal.js Components",
"icons": {
"128": "build/metal.png"
},
"devtools_page": "build/devtools.html",
"permissions": [
"<all_urls>"
],
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"build/initializer.js"
],
"run_at": "document_start"
}
]
"manifest_version": 2,
"name": "Metal.js Developer Tools",
"version": "0.0.1",
"description": "Developer tool for inspecting Metal.js Components",
"author": "Bryce Osterhaus",
"homepage_url": "https://github.com/metal/metal-devtools",

"icons": {
"48": "build/metal_128.png",
"128": "build/metal_128.png"
},
"background": {
"scripts": ["build/background.js"],
"persistent": false
},
"browser_action": {
"default_icon": "build/metal_128.png",
"default_popup": "build/popup.html",
"default_title": "Metal.js Devtools"
},
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["build/initializer.js"],
"run_at": "document_start"
}
],
"devtools_page": "build/devtools.html",
"permissions": [
"file:///*",
"http://*/*",
"https://*/*"
]
}

0 comments on commit 67d5927

Please sign in to comment.