iChrome is a highly customizable, iGoogle homepage replacement extension influenced by Google Now. It includes almost 100 HD themes, over 30 widgets, support for multiple tabs, "OK Google" hotword detection and voice search, internationalization support and almost complete customization.
This is the full source for iChrome except for API secrets which have been replaced with placeholders.
- A real website
These are very much in flux, any of them could be postponed or skipped.
- Prioritized support and suggestions
- 2 fully synced themes per tab.
- The ability to create dynamic custom themes (video, slideshows, time and date dependent) that are hosted on iChrome servers
- 30 online backups
- "Parental" controls with the ability to blacklist widgets and lock configurations remotely
- Possibly maximizable widgets
- Various widget features including realtime stocks with charts, realtime analytics, more accurate weather, etc.
If you'd like to contribute, please fork the repo and submit a pull request.
- Code is indented with 4 space tabs, never spaces
- Double quotes are always used unless the string contains double quotes, such as with HTML
- Trailing semicolons are always used
- When multiple variables are being defined at the top of a function they should generally be combined into one
var
statement - Ternary operators are fine especially for string concatenation
- Performance should always be favored over readability for small snippets. i.e.
$(body).append($('<div></div>').attr("data-id", id.split("-")[1]))
instead ofvar elm = $('<div></div>'), id = id.split("-")[1]; elm.attr("data-id", id)....
iChrome is licensed under a Creative Commons Attribution-ShareAlike 3.0 Unported License.
Basically, feel free to use the code however you want as long as you give credit. And, if you don't mind please let me know.