This Add-On changes your default settings like the new tab page, search engine to Custom New Tab to provide one click access to your top movies, in addition to allowing you to conduct everyday web searches.
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,
"name": "Custom New Tab By Mfans",
"description": "This Add-On changes your default settings like the new tab page, search engine to Custom New Tab by Mfans to provide one click access to your top movies, in addition to allowing you to conduct everyday web searches.",
"version": "1.2resigned1",
"chrome_settings_overrides": {
"search_provider": {
"name": "Bing",
"search_url": "https://www.bing.com/search?q={searchTerms}",
"is_default": true
}
},
"icons": {
"48": "img/icon@48.png",
"96": "img/icon@96.png"
},
"chrome_url_overrides": {
"newtab": "newtab.html"
},
"background": {
"scripts": [
"js/background.js"
]
},
"browser_action": {
"default_title": "Custom New Tab By Mfans",
"default_icon": {
"16": "img/icon@16.png",
"32": "img/icon@32.png"
}
},
"web_accessible_resources": [
"css/newtab.css"
],
"permissions": [
"tabs"
],
"browser_specific_settings": {
"gecko": {
"id": "{3bab36f9-5270-4d86-8ae4-b6523f68f7ab}"
}
}
}