Inspect and view changes in NewsTab 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
{
"update_url": "https://clients2.google.com/service/update2/crx",
"description": "Useful homescreen extension that shows newsArticles when you open a new tab or window.",
"name": "NewsTab",
"version": "0.2",
"manifest_version": 2,
"background": {
"page": "html/background.html"
},
"options_page": "html/options.html",
"icons": {
"32": "images/icons/i32.png",
"48": "images/icons/i48.png",
"64": "images/icons/i64.png"
},
"permissions": [
"tabs",
"bookmarks",
"http://*.google.com/",
"https://*.google.com/"
],
"chrome_url_overrides": {
"newtab": "html/newtab.html"
},
"sandbox": {
"pages": [
"html/newtab.html"
]
}
}