Auto scrolls webpages at a reasonable pace
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"browser_specific_settings": {
"gecko": {
"id": "[email protected]",
"strict_min_version": "102.0"
},
"gecko_android": {
"id": "[email protected]",
"strict_min_version": "113.0"
}
},
"manifest_version": 2,
"name": "Scrollio",
"version": "1.2",
"description": "Auto scrolls webpages at a reasonable pace",
"icons": {
"48": "icons/scroll-svg.svg"
},
"permissions": [
"activeTab"
],
"browser_action": {
"default_icon": {
"48": "icons/scroll-svg.svg"
},
"default_title": "Scrollio",
"default_popup": "popup/settings.html"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"scrol.js"
],
"run_at": "document_end"
}
],
"background": {
"scripts": [
"popup/background.js"
]
}
}