Pages



Increase Broadband Speed (HACK)

Improving broadband speeds at home can be done with some quick and easy tips.

World of Robos

No longer relegated to science fiction, robots are invading the real world

Command Prompt hacking Commands

Useful Things to do on Command Prompt.

Google Hacks

Tips for Google Browser, Gmail, Books, Images, Maps, YouTube, etc..

World of Windows

From OS to Docs, helpful tips for everyone.

How to Make a Chrome Web App for a Website



Google Chrome has an excellent way to quickly access your favourite Web Apps, in this How-To, I show you how to create your own App.

I wanted a web app for Spotify, so I have a nice icon in the launcher and I could also open the app in its own chrome-less window. Sadly, an app for the Spotify web player does not exist on the Chrome Web Store yet.

But you can create a web app for any website on the Internet.
Step 1
Create a folder in your “Downloads” folder on your Chromebook, name the folder after your web app. In this example I’m naming it ‘Spotify’ because I’m creating a Spotify web app.

Step 2

In this folder, download/create an icon for the app (it needs to be a 128×128 PNG file), rename it “icon_128.png”.

Step 3

Now you’ll need to create a plain text file with the following contents. Rename/edit the contents as per your web app.
{
 "name": "App Name",
 "description": "App description (132 characters or less, no HTML)",
 "version": "1.0.0",
 "manifest_version": 2,
 "icons": {
 "128": "icon_128.png"
 },
 "app": {
 "urls": [
 "http://mysubdomain.example.com/"
 ],
 "launch": {
 "web_url": "http://mysubdomain.example.com/"
 }
 }
 }

Step 4

Saved the file, renaming it to “manifest.json” (make sure the .txt file extension is gone).
Spotify Web App

Step 5

Once you have the icon and json file in the folder you should test that it works.
Open the ‘Extensions’ page from Chrome’s Settings menu.  Tick “Developer Mode”. Click “Load Unpacked Extension” and select the web app folder.
The Web App should now be installed on your New Tab page.
Extensions & Web Apps
Please note, you can not delete the web app folder, since Chrome will load the web app from this folder.
Source

How to get apk for Installed Android App


I was trying to get apk for installed apps on adroid and question was.
- where are the apk files stored on android phone
- How to Download APK files from Android Market to PC


Solution 1: For Rooted Phone
      Preinstalled applications are in /system/app folder. User installed applications are in /data/app. I guess you can't access unless you have a rooted phone. 

Solution 2: Non Rooted Phone
      If you just want to get .apk file of something you previously installed just do this:
     1. get AirDroid from Market (Google Play)
     2. access you phone using AirDroid from your PC web browser
     3. go to Apps, select preinstalled or installed app
     4. click 'download' button to downlaod .apk version of this app from you phone
you don't have to root your phone or use adb tool.

Solution 3: Non Rooted Phone
    1. Install Root Explorer or ES file explorer
    2. take backup of apps
    3. and you can find apps in /apps/backup/

Solution 4: Using Apk Downloader tool 
           Follow from here..