Inspect and view changes in Random Quotes 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 Quote",
"version": "1.0",
"description": "Displays a random quote",
"icons": {
"48": "icon.png"
},
"browser_action": {
"default_icon": {
"48": "icon.png"
},
"default_title": "Random Quote"
},
"background": {
"scripts": [
"background.js"
]
},
"permissions": [
"<all_urls>"
],
"browser_specific_settings": {
"gecko": {
"id": "{8a7573ec-c4e5-4b7e-86b3-357aec398c31}"
}
}
}