add files for creating chrome webstore app

git-svn-id: http://svg-edit.googlecode.com/svn/trunk@2034 eee81c28-f429-11dd-99c0-75d572ba1ddd
This commit is contained in:
Pavol Rusnak
2011-06-01 12:53:49 +00:00
parent 1c38606a34
commit 7220cd1079
3 changed files with 25 additions and 0 deletions

View File

@@ -75,6 +75,11 @@ opera: build/$(PACKAGE)
cp -r build/$(PACKAGE)/* build/opera/editor
cd build/opera ; $(ZIP) ../$(PACKAGE).wgt -r * ; cd ../..
chrome:
mkdir -p build/svgedit_app
cp -a chrome-app/* build/svgedit_app
cd build ; $(ZIP) -r $(PACKAGE)-crx.zip svgedit_app ; rm -rf svgedit_app; cd ..
clean:
rm -rf config
rm -rf build/$(PACKAGE)

BIN
chrome-app/icon_128.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.6 KiB

20
chrome-app/manifest.json Normal file
View File

@@ -0,0 +1,20 @@
{
"name": "SVG-edit",
"description": "A fast, web-based, Javascript-driven SVG editor that works in any modern browser",
"version": "2.6",
"app": {
"urls": [
"*://svg-edit.googlecode.com/svn/tags/stable/"
],
"launch": {
"web_url": "http://svg-edit.googlecode.com/svn/tags/stable/editor/svg-editor.html"
}
},
"icons": {
"128": "icon_128.png"
},
"permissions": [
"unlimitedStorage",
"notifications"
]
}