Inspect and view changes in RESTED 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": "RESTED",
"version": "2.5.0",
"description": "A REST client for the rest of us",
"homepage_url": "https://github.com/esphen/RESTED",
"manifest_version": 2,
"minimum_chrome_version": "60.0",
"icons": {
"16": "dist/img/favicon/favicon-16x16.png",
"32": "dist/img/favicon/favicon-32x32.png",
"64": "dist/img/favicon/favicon-64x64.png",
"96": "dist/img/favicon/favicon-96x96.png",
"128": "dist/img/favicon/favicon-128x128.png"
},
"browser_action": {
"default_title": "Open RESTED tab",
"default_icon": {
"16": "dist/img/favicon/favicon-16x16.png",
"32": "dist/img/favicon/favicon-32x32.png",
"64": "dist/img/favicon/favicon-64x64.png",
"96": "dist/img/favicon/favicon-96x96.png",
"128": "dist/img/favicon/favicon-128x128.png"
}
},
"background": {
"scripts": [
"main.js"
]
},
"permissions": [
"<all_urls>",
"webRequest",
"storage"
]
}