Creating a New New Tab Page for Chrome

For a long time Chrome Extensions have had the ability to create a new tab page in side Chrome. An excellent example of this is SpeedDial.
With the introduction of the new Chrome Web Store there is a new boy in town. Apps. Apps are installed on to the New Tab Page and if your extension doesn’t handle them, then you need to update it because users will not be able to run the new apps that they have installed or purchased.


This content originally appeared on Modern Web Development with Chrome and was authored by Paul Kinlan

<p>For a long time Chrome Extensions have had the ability to <a href="http://code.google.com/chrome/extensions/override.html">create a new tab page</a> in side Chrome. An excellent example of this is <a href="https://chrome.google.com/webstore/detail/dgpdioedihjhncjafcpgbbjdpbbkikmi">SpeedDial</a>.</p> <p>With the introduction of the new <a href="http://chrome.google.com/webstore">Chrome Web Store</a> there is a new boy in town. Apps. Apps are installed on to the New Tab Page and if your extension doesn't handle them, then you need to update it because users will not be able to run the new apps that they have installed or purchased.</p> <p>The good news is that for a little while now Chrome has had a <a href="http://code.google.com/chrome/extensions/management.html">Management API</a>. The API gives you specific access to a list of all the Apps and Extensions that are installed in to a users browser.</p> <p>So, without further ado, lets make an awesome Chrome Extension New Tab Page with an amazing App Launcher!!</p> <p>As always with an extension, you start with a manifest.</p> <div class="CodeRay"> <div class="code"><pre>{ <span class="key"><span class="delimiter">"</span><span class="content">name</span><span class="delimiter">"</span></span>: <span class="string"><span class="delimiter">"</span><span class="content">The New App Launcher</span><span class="delimiter">"</span></span>, <span class="key"><span class="delimiter">"</span><span class="content">description</span><span class="delimiter">"</span></span>: <span class="string"><span class="delimiter">"</span><span class="content">Launches apps, the good way!</span><span class="delimiter">"</span></span>, <span class="key"><span class="delimiter">"</span><span class="content">version</span><span class="delimiter">"</span></span>: <span class="string"><span class="delimiter">"</span><span class="content">0.0.0.1</span><span class="delimiter">"</span></span>, <span class="key"><span class="delimiter">"</span><span class="content">permissions</span><span class="delimiter">"</span></span> : [<span class="string"><span class="delimiter">"</span><span class="content">management</span><span class="delimiter">"</span></span>], <span class="key"><span class="delimiter">"</span><span class="content">chrome_url_overrides</span><span class="delimiter">"</span></span> : { <span class="key"><span class="delimiter">"</span><span class="content">newtab</span><span class="delimiter">"</span></span>: <span class="string"><span class="delimiter">"</span><span class="content">newtab.html</span><span class="delimiter">"</span></span> } }</pre></div> </div> <p>Done, that was simple. Notice that we defined a permission – management, and we also defined an object called 'chrome_url_overrides', specifying a new url for the New Tab Page.</p> <p>Next step, create the 'newtab.html' file – we will keep it simple for now – just a simple skeleton.</p> <div class="CodeRay"> <div class="code"><pre><span class="tag"><html></span> <span class="tag"><head></span> <span class="tag"><style></span> <pre><code><span class="tag">&lt;/style&gt;</span> <span class="tag">&lt;script&gt;</span> </code></pre> <p><span class="inline"> document.addEventListener(<span class="string"><span class="delimiter">"</span><span class="content">DOMContentLoaded</span><span class="delimiter">"</span></span>, <span class="keyword">function</span>() { chrome.management.getAll(getAllCallback); });</p> <pre><code> <span class="keyword">var</span> <span class="function">getAllCallback</span> = <span class="keyword">function</span>(list) { <span class="comment">// TODO: Something Awesome</span> };</span> <span class="tag">&lt;/script&gt;</span> </code></pre> <p><span class="tag"></head></span> <span class="tag"><body></span> <span class="tag"><div</span> <span class="attribute-name">id</span>=<span class="string"><span class="delimiter">"</span><span class="content">apps</span><span class="delimiter">"</span></span><span class="tag">></span></p> <pre><code><span class="tag">&lt;/div&gt;</span> </code></pre> <p><span class="tag"></body></span> <span class="tag"></html></span></pre></div></p> </div> <p>It is pretty standard HTML, with a simple call to a Chrome specific API called chrome.management.getAll – which as you guessed gets a list of all the Extensions and App installed on the your system. Like all methods in the extension subsystem, getAll doesn't return data directly, rather the data is returned via a callback defined by you. The callback will recieve a list of <a href="http://code.google.com/chrome/extensions/management.html#type-ExtensionInfo">ExtensionInfo</a> objects</p> <p>Lets do something with this, because as it stands it is just a blank page. Lets populate the 'apps' div with some content by padding out 'getAllCallback' with some functionality.</p> <div class="CodeRay"> <div class="code"><pre><span class="keyword">var</span> <span class="function">getAllCallback</span> = <span class="keyword">function</span>(list) { <span class="keyword">var</span> apps = document.getElementById(<span class="string"><span class="delimiter">"</span><span class="content">apps</span><span class="delimiter">"</span></span>); <span class="keyword">for</span>(<span class="keyword">var</span> i <span class="keyword">in</span> list) { <span class="comment">// we don't want to do anything with extensions yet.</span> <span class="keyword">var</span> extInf = list[i]; <span class="keyword">if</span>(extInf.isApp && extInf.enabled) { <span class="keyword">var</span> app = document.createElement(<span class="string"><span class="delimiter">"</span><span class="content">div</span><span class="delimiter">"</span></span>); <pre><code> <span class="keyword">var</span> img = <span class="keyword">new</span> Image(); img.className = <span class="string"><span class="delimiter">&quot;</span><span class="content">image</span><span class="delimiter">&quot;</span></span>; img.src = find128Image(extInf.icons); <span class="keyword">var</span> name = document.createElement(<span class="string"><span class="delimiter">&quot;</span><span class="content">div</span><span class="delimiter">&quot;</span></span>); name.className = <span class="string"><span class="delimiter">&quot;</span><span class="content">name</span><span class="delimiter">&quot;</span></span>; name.textContent = extInf.name; app.className = <span class="string"><span class="delimiter">&quot;</span><span class="content">app</span><span class="delimiter">&quot;</span></span>; app.appendChild(img); app.appendChild(name); apps.appendChild(app); } </code></pre> <p>} };</p> <p><span class="keyword">var</span> <span class="function">find128Image</span> = <span class="keyword">function</span>(icons) { <span class="keyword">for</span>(<span class="keyword">var</span> icon <span class="keyword">in</span> icons) { <span class="keyword">if</span>(icons[icon].size == <span class="string"><span class="delimiter">"</span><span class="content">128</span><span class="delimiter">"</span></span>) { <span class="keyword">return</span> icons[icon].url; } }</p> <p><span class="keyword">return</span> <span class="string"><span class="delimiter">"</span><span class="content">/noicon.png</span><span class="delimiter">"</span></span>; };</pre></div></p> </div> <p>Again, pretty simple – the output should look similar to the attached. Pretty nice, but there is one small problem – nothing is clickable, we can't launch anything. That is pretty simple to solve thanks again to chrome.management API. The API has a simple method called 'launchApp' which at its simplest takes an extension ID as its parameter.</p> <p>Lets get that added so we have a fully functioning New Tab Page and App launcher. We will just add a click handler to the image, no anchors needed.</p> <div class="CodeRay"> <div class="code"><pre>img.addEventListener(<span class="string"><span class="delimiter">"</span><span class="content">click</span><span class="delimiter">"</span></span>, (<span class="keyword">function</span>(ext) { <span class="keyword">return</span> <span class="keyword">function</span>() { chrome.management.launchApp(ext.id); }; })(extInf));</pre></div> </div> <p>And that is it. We have a Chrome extension that provides a New Tab Page with app launcher functionality! Awesome</p> <p>The code for this post is <a href="https://github.com/PaulKinlan/New-App-Launcher">on Github</a>, so fork away and have a play and let me know if you create an awesome extension.</p>


This content originally appeared on Modern Web Development with Chrome and was authored by Paul Kinlan


Print Share Comment Cite Upload Translate Updates
APA

Paul Kinlan | Sciencx (2010-12-09T00:00:00+00:00) Creating a New New Tab Page for Chrome. Retrieved from https://www.scien.cx/2010/12/09/creating-a-new-new-tab-page-for-chrome/

MLA
" » Creating a New New Tab Page for Chrome." Paul Kinlan | Sciencx - Thursday December 9, 2010, https://www.scien.cx/2010/12/09/creating-a-new-new-tab-page-for-chrome/
HARVARD
Paul Kinlan | Sciencx Thursday December 9, 2010 » Creating a New New Tab Page for Chrome., viewed ,<https://www.scien.cx/2010/12/09/creating-a-new-new-tab-page-for-chrome/>
VANCOUVER
Paul Kinlan | Sciencx - » Creating a New New Tab Page for Chrome. [Internet]. [Accessed ]. Available from: https://www.scien.cx/2010/12/09/creating-a-new-new-tab-page-for-chrome/
CHICAGO
" » Creating a New New Tab Page for Chrome." Paul Kinlan | Sciencx - Accessed . https://www.scien.cx/2010/12/09/creating-a-new-new-tab-page-for-chrome/
IEEE
" » Creating a New New Tab Page for Chrome." Paul Kinlan | Sciencx [Online]. Available: https://www.scien.cx/2010/12/09/creating-a-new-new-tab-page-for-chrome/. [Accessed: ]
rf:citation
» Creating a New New Tab Page for Chrome | Paul Kinlan | Sciencx | https://www.scien.cx/2010/12/09/creating-a-new-new-tab-page-for-chrome/ |

Please log in to upload a file.




There are no updates yet.
Click the Upload button above to add an update.

You must be logged in to translate posts. Please log in or register.