Scroll the page and elements by dragging like on a tablet or smartphone
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": 2,
"name": "Drag Scroll",
"description": "Scroll the page and elements by dragging like on a tablet or smartphone",
"icons": {
"48": "icons/icon-48.png",
"96": "icons/icon-96.png",
"128": "icons/icon-128.png",
"256": "icons/icon-256.png"
},
"version": "0.2.1resigned1",
"content_scripts": [
{
"matches": [
"*://*/*",
"http://*/*",
"https://*/*",
"ftp://*/*",
"file://*/*"
],
"js": [
"DragScroll.js",
"dsapp.js"
],
"run_at": "document_start",
"all_frames": true
}
],
"background": {
"scripts": []
},
"browser_action": {
"default_icon": "icons/icon-32.png",
"default_popup": "popup.html"
},
"permissions": [
"activeTab",
"storage",
"http://*/*",
"https://*/*",
"ftp://*/*",
"file://*/*"
],
"applications": {
"gecko": {
"id": "{96bec0f4-e8b0-487d-97dc-09197dab4340}"
}
}
}