Inspect and view changes in Browser Home source codes across current and past versions
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": "Browser Home",
"version": "1.3.1",
"description": "Displays a page of your favorite bookmarks when opening a new tab.",
"author": "RandomDevelopers",
"chrome_settings_overrides": {
"homepage": "index.html"
},
"chrome_url_overrides": {
"newtab": "index.html"
},
"background": {
"scripts": [
"background.js"
]
},
"icons": {
"64": "favicon.png"
},
"permissions": [
"storage",
"bookmarks",
"*://*/*"
],
"options_ui": {
"page": "index.html?options"
},
"applications": {
"gecko": {
"id": "{20996d16-4742-4689-94a5-5a237443f094}"
}
}
}