Inspect and view changes in Restart Browser 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",
"manifest_version": 2,
"name": "Restart Browser",
"version": "2.7",
"author": "Nacho Vazquez",
"description": "__MSG_extensionDescription__",
"default_locale": "en",
"background": {
"scripts": [
"restart/restart.js"
],
"persistent": true
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"dialog/open-dialog.js"
]
}
],
"options_ui": {
"page": "options/options.html",
"open_in_tab": true
},
"homepage_url": "https://www.timerestart.ga/",
"icons": {
"16": "icons/Restart16.png",
"32": "icons/Restart32.png",
"64": "icons/Restart64.png",
"128": "icons/Restart128.png"
},
"browser_action": {
"default_icon": {
"16": "icons/Restart16.png",
"32": "icons/Restart32.png",
"64": "icons/Restart64.png",
"128": "icons/Restart128.png"
},
"default_title": "Restart Browser"
},
"permissions": [
"notifications",
"webNavigation",
"tabs",
"storage",
"unlimitedStorage",
"nativeMessaging"
]
}