Unfortunately, if you have a website you visit regularly but isn’t available in the Chrome Web Store, there’s not much you can do.You can always use bookmarks, but if you’re like me, you know too many bookmarks tend to suck and end up just being a useless clutter of links you never end up actually benefitting from.So all in all, it looks like clutter and a ridiculous # of bookmark folders are your best options.
UNLESS YOU COULD ADD YOUR OWN LINKS TO THE APP LAUNCHER.DUN DUN DUN…………………Tutorial time.
icons below were created using this Pixel Icon Generator
Chrome (derp)
A text editor (I prefer Sublime Text)
Google-fu (Just a little!)
Choose which website you want to add! 😍I chose One Page Love, which is a One Page website design gallery showcasing the best Single Page website designs from around the web.
Create a folder with he name of the site you want to add to your Chrome App Launcher.
You’re going to end up having two files with each folder/app you create:
The png can actually be any size, but 128x128 is ideal.You’ll need both for this to work (there can be errors!).
Open up your text editor and type in the following:
{
"manifest_version": 2,
"name": "One Page Love",
"description": "One Page Love is a One Page website design gallery showcasing the best Single Page website designs from around the web.",
"version": "1.0",
"icons":
{
"128": "onepagelove.png"
},
"app":
{
"urls":
[
"//onepagelove.com/"
],
"launch":
{
"web_url": "//onepagelove.com/"
}
},
"permissions":
[
"unlimitedStorage",
"notifications"
]
}
The above example works with the One Page Love website.
There are 4 variables you’re going to change to work for your website in the above code:
A handy tip to get the description for the website fast is by using the query info:onepagelove.com in Google which will provide information about the url. No spaces, or else it doesn’t work.
Now save this file that you’ve edited to work with your website as manifest.json into the folder you created in Step 2.
Time to get your icon!
You can accelerate your search by going to Search tools > > > Size > Exactly... > Width: 128 px, Height: 128 px and then by typing in filetype:png into the Google search to select specifically for PNG files.
You’re ready to add the extension!Head over to chrome://extensions or use your toolbar to get there.
Click Load unpacked extension...Choose the folder with your files that you created Step 4.
Your website will now show up in the extensions!
And once it shows up in your extensions, it’ll also show up in the Chrome App Launcher.
That’s it. Congratulations! 😊