Chrome Apps is most times just a website bookmarks and it might be good idea to make one for your own website. You will only need to create and few site icons and manifest file.
{ "name": "GintasDX Blog", "description": "Techonology and random blog", "version": "1", "app": { "launch": { "web_url": "http://gintasdx.blogspot.com" } }, "icons": { "32": "32.png", "16": "16.png", "96": "96.png", "128": "128.png" }, "permissions": [ "unlimitedStorage", "notifications" ] }
You need read a developers guide if you want to know what exactly each line does. Basically all you need is a 128x128px size icon and this sample manifest file. Finally you need to pack your extension using Chrome.
Start Chrome and push the wrench icon in the right upper corner. Go to Tools->Extensions....
Select the Developer Mode and press the Pack Extension button. In new dialog you need select the folder where you put an icon and manifest.json file .
Later just drag and drop the .crx file on Chrome browser window. You will see a some warning at the bottom,but since you are using your own extension you can press Continue without worries.
A dialog like this should appear:
After pressing Install you will have your custom app in a main start page. |
No comments:
Post a Comment