The New tab preferred by million users,add website icon,HD wallpapers,bookmark,weather,notes,to-do list,extended and history manager
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"manifest_version": 2,
"version": "1.8.2",
"icons": {
"96": "app-icon/512.png",
"128": "app-icon/512.png"
},
"chrome_url_overrides": {
"newtab": "index.html"
},
"browser_action": {
"default_icon": {
"96": "app-icon/512.png"
},
"default_title": "__MSG_add_to_infinity__",
"default_popup": "popup/popup.html"
},
"default_locale": "en",
"content_scripts": [
{
"matches": [
"http://*/*",
"https://*/*"
],
"js": [
"lib/client.js",
"lib/sav.js",
"lib/poly.js",
"lib/ique.js"
],
"all_frames": true,
"run_at": "document_end"
}
],
"minimum_chrome_version": "45",
"name": "New Tab - Customized Dashboard",
"background": {
"page": "background/background.html",
"persistent": true
},
"description": "__MSG_extension_des__",
"offline_enabled": true,
"content_security_policy": "script-src 'self' 'unsafe-eval' ; object-src 'self'",
"permissions": [
"chrome://favicon/",
"https://www.yahoo.com/*",
"https://mail.google.com/*",
"topSites",
"history",
"management",
"notifications",
"bookmarks",
"storage",
"*://*.infinitynewtab.com/*",
"unlimitedStorage",
"alarms",
"*://*/*",
"activeTab",
"webNavigation",
"webRequest",
"webRequestBlocking",
"background"
],
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}