This toggle button can scroll long web pages which adds dynamic contents (ajax).
is supposed to replace the eraser on the <end> key.
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"description": "Scroll to the real end of the page. This is supposed to replace the eraser on the end key",
"manifest_version": 2,
"name": "autoScroll",
"version": "0.5.0",
"icons": {
"48": "icons/as.png"
},
"background": {
"scripts": [
"background.js"
]
},
"page_action": {
"default_icon": "icons/s.png",
"browser_style": true
},
"permissions": [
"activeTab",
"tabs",
"storage"
],
"options_ui": {
"page": "options.html"
}
}