This entire website - minus, oh say..... I dont know, 400 some odd cruddy old posts - have moved to a more
professional, better quality, and most importantly, snazzier site!

Yes, you're right, the new site features my past greatest posts, without the awful ones, and all new
ones to come!

Come visit or I'll throw you into a vortex of lava for still being on this old site!
**The link actually works now. Enjoy!


Sunday, February 27, 2011

How to Post A Chrome Web Store App Without Owning The Underlying Site

Now, this guide is for making temporary applications available to the public while the website you are trying to make an app for, makes one themselves.

Since I got tired of waiting for Gizmodo to post an app of their own, I made a Gizmodo Chrome App as an example.

To start, download my base app here: http://www.mediafire.com/?dnucf166lhf6m07
This will set you up with the correct layout and setup.

Once you open the manifest.json file, you will see this:



{
"name": "ENTER THE APP NAME HERE",
"description": "ENTER A QUICK DESCRIPTION OF THE APP HERE",
"version": "1.0",
"icons": { "16": "16.png",
          "128": "128.png" },
"app": {
"launch": {
"local_path": "NAME THIS HTML THE SAME AS YOUR APP NAME.html"
}
},
"permissions": [
"unlimitedStorage",
"notifications"
]
}

Pretty self explanatory. Next, open the HTML file and you will see this:

<meta HTTP-EQUIV="REFRESH" content="0; url=http://YOUR SITE HERE.com">


Add your site and you're almost done!

Now get your own images that are 16x16 and 128x128 and name them 16.PNG and 128.PNG


Now rename "Base App" to your app name and right click it again. Select "Send To" and click "Compressed Folder"

Now visit this link: https://chrome.google.com/webstore/developer/dashboard
and (If you didn't already) pay the 5 bucks and upload your app!

2 comments:

  1. There is a MUCH easier way to make these so called apps:

    1. Navigate the the site that you want to make an "app" for.
    2. Click on the star in the address bar.
    3. Select Boomarks Bar from the dropdown menu.

    Presto! You have an "app" on your new tab page.

    ReplyDelete