Inspect and view changes in Stair Scroller 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": 3,
"name": "Stair Scroller",
"description": "Adds a playful, unpredictable way to scroll pages with interactive and accessible controls.",
"version": "1.0",
"icons": {
"16": "images/icon16.png",
"32": "images/icon32.png",
"48": "images/icon48.png",
"128": "images/icon128.png"
},
"action": {
"default_icon": {
"16": "images/icon16.png",
"32": "images/icon32.png",
"48": "images/icon48.png",
"128": "images/icon128.png"
},
"default_title": "Stairs Scroller",
"default_popup": "tutorial.html"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"css": [
"styles.css"
],
"js": [
"content.js"
],
"run_at": "document_end"
}
],
"web_accessible_resources": [
{
"resources": [
"images/up.svg",
"images/down.svg",
"images/icon.svg"
],
"matches": [
"<all_urls>"
]
}
],
"permissions": [
"storage",
"activeTab",
"scripting"
],
"host_permissions": [
"<all_urls>"
],
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}