Inspect and view changes in Scroll To Top 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": "Scroll To Top",
"description": "An extension that adds a button on a page that scrolls to the top.",
"version": "1.0",
"icons": {
"16": "/images/up_16px.png",
"32": "/images/up_32px.png",
"48": "/images/up_48px.png",
"128": "/images/up_127px.png"
},
"background": {
"service_worker": "/background.js"
},
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "/images/up_16px.png",
"32": "/images/up_32px.png",
"48": "/images/up_48px.png",
"128": "/images/up_127px.png"
}
},
"options_page": "options.html",
"permissions": [
"storage",
"activeTab",
"scripting",
"tabs"
],
"host_permissions": [
"<all_urls>"
],
"web_accessible_resources": [
{
"resources": [
"/images/up_white_32px.png"
],
"matches": [
"<all_urls>"
]
}
]
}