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
{
"update_url": "https://clients2.google.com/service/update2/crx",
"manifest_version": 3,
"name": "Random Quotes",
"version": "0.0.1",
"description": "Displays a random quote on new tabs.",
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "icons/zapscale-16x16.png",
"48": "icons/zapscale-48x48.png",
"128": "icons/zapscale-128x128.png"
}
},
"icons": {
"16": "icons/zapscale-16x16.png",
"48": "icons/zapscale-48x48.png",
"128": "icons/zapscale-128x128.png"
},
"chrome_url_overrides": {
"newtab": "popup.html"
},
"web_accessible_resources": [
{
"resources": [
"messages.json"
],
"matches": [
"<all_urls>"
]
}
]
}