Inspect and view changes in Sloth 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",
"name": "Sloth",
"short_name": "Sloth",
"description": "Automatically discards all tabs at startup, before they load, reducing memory footprint and unnecessary bandwidth usage.",
"version": "0.5",
"permissions": [
"tabs"
],
"background": {
"scripts": [
"js/eventPage.js"
],
"persistent": false
},
"icons": {
"16": "img/icon16.png",
"48": "img/icon48.png",
"128": "img/icon128.png"
},
"browser_action": {
"default_icon": {
"16": "img/icon16.png",
"48": "img/icon48.png",
"128": "img/icon128.png"
}
},
"incognito": "not_allowed",
"manifest_version": 2,
"minimum_chrome_version": "54",
"options_ui": {
"page": "html/options.html",
"chrome_style": true
}
}