This extension replaces your browser's new tab page and home page for your minimalist needs, which presents your links as a clean, simple list.
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": "A New HOMEpage",
"short_name": "a_new_home",
"version": "1.1",
"author": "Daniel Prętki",
"description": "This extension replaces your browser's new page and home page which presents your links as a clean, simple list.",
"icons": {
"96": "src/icons/logo-96.png"
},
"chrome_url_overrides": {
"newtab": "src/index.html"
},
"browser_action": {
"default_popup": "src/tool-bar-popup.html",
"default_title": "Quickly add current page to bookmarks",
"default_icon": {
"48": "src/icons/logo-48.png"
}
},
"permissions": [
"activeTab"
],
"browser_specific_settings": {
"gecko": {
"id": "{69e209bf-d45c-4748-98b9-1b404caa78ad}"
}
}
}