Skip to content

Commit

Permalink
Fixes for hosted apps
Browse files Browse the repository at this point in the history
'make apps' should not depend on 'all'
manifests have been fixed to include absolute URLs
.crx files have been rebuilt
  • Loading branch information
chroby committed Feb 9, 2012
1 parent d9bcd25 commit 92ca662
Show file tree
Hide file tree
Showing 11 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Makefile
Expand Up @@ -28,7 +28,7 @@ tools: chrome

chrome: extensions apps

apps: all
apps:
./packcrx.sh tools/chrome/apps/hosted/cloudfilepicker tools/chrome/key.pem
./packcrx.sh tools/chrome/apps/hosted/imagemator tools/chrome/key.pem
./packcrx.sh tools/chrome/apps/hosted/inspirationmator tools/chrome/key.pem
Expand Down
Binary file modified tools/chrome/apps/hosted/cloudfilepicker.crx
Binary file not shown.
2 changes: 1 addition & 1 deletion tools/chrome/apps/hosted/cloudfilepicker/manifest.json
Expand Up @@ -13,7 +13,7 @@
"intents": {
"http://webintents.org/pick" : {
"type" : ["image/*"],
"path" : "/index.html",
"path" : "http://www.cloudfilepicker.com/index.html",
"title" : "Pick file from CloudFilePicker.com"
}
}
Expand Down
Binary file modified tools/chrome/apps/hosted/imagemator.crx
Binary file not shown.
Binary file modified tools/chrome/apps/hosted/inspirationmator.crx
Binary file not shown.
4 changes: 2 additions & 2 deletions tools/chrome/apps/hosted/inspirationmator/manifest.json
Expand Up @@ -13,12 +13,12 @@
"intents": {
"http://webintents.org/pick" : {
"type" : ["image/*"],
"path" : "/pick.html",
"path" : "http://www.inspirationmator.com/pick.html",
"title" : "Pick file from inspirationmator.com"
},
"http://webintents.org/edit" : {
"type" : ["image/*"],
"path" : "/",
"path" : "http://www.inspirationmator.com/",
"title" : "Edit file in inspirationmator.com"
}
}
Expand Down
Binary file modified tools/chrome/apps/hosted/mememator.crx
Binary file not shown.
4 changes: 2 additions & 2 deletions tools/chrome/apps/hosted/mememator/manifest.json
Expand Up @@ -13,12 +13,12 @@
"intents": {
"http://webintents.org/pick" : {
"type" : ["image/*"],
"path" : "/pick.html",
"path" : "http://www.mememator.com/pick.html",
"title" : "Pick file from mememator.com"
},
"http://webintents.org/edit" : {
"type" : ["image/*"],
"path" : "/",
"path" : "http://www.mememator.com/",
"title" : "Edit file in mememator.com"
}
}
Expand Down
Binary file modified tools/chrome/apps/hosted/quicksnapr.crx
Binary file not shown.
2 changes: 1 addition & 1 deletion tools/chrome/apps/hosted/quicksnapr/manifest.json
Expand Up @@ -13,7 +13,7 @@
"intents": {
"http://webintents.org/pick" : {
"type" : ["image/*"],
"path" : "/",
"path" : "http://www.quicksnapr.com/",
"title" : "Snap an image from your WebCam"
}
}
Expand Down
Binary file modified tools/chrome/apps/packaged/scrapbook.crx
Binary file not shown.

0 comments on commit 92ca662

Please sign in to comment.