Inspect and view changes in Random Success Quote 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": "Random Success Quote",
"version": "1.0",
"description": "Displays a random success quote when clicked.",
"icons": {
"48": "icon.png"
},
"background": {
"scripts": [
"background.js"
],
"persistent": false
},
"permissions": [
"notifications"
],
"browser_action": {
"default_title": "Random Success Quote",
"default_popup": "popup.html"
},
"browser_specific_settings": {
"gecko": {
"id": "{d0ea7d1d-c00d-4f38-8930-5192a58f2f0d}"
}
}
}