Simple Autoscroll

An extension that adds the ability to automatically scroll through long pages.

Simple Autoscroll क्या है?

Simple Autoscroll https://berezin.io द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "An extension that adds the ability to automatically scroll through long pages."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Simple Autoscroll एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        Ever want to read through an article without even touching a mouse or keyboard? Simple Autoscroll will help you with just that! 

With Simple Autoscroll, you simply set how many pixels to scroll at set intervals, press "Go", and start reading! To stop the scrolling, simply click on the extension icon and the scrolling will cease.

Simple as that!

Tips:
- Want to scroll from the bottom to the top? Simply add a negative value into the "Scroll X Pixels" field.
- For a smooth scrolling experience, simple input lower values for both pixels and milliseconds. For example scrolling 1 pixel every 30 milliseconds provides a nice, smooth scrolling experience. increasing the millisecond count makes it slower.

Simple Autoscroll has not and never will never read any of your data and will only modify a page as needed to make autoscrolling work properly. Simple Autoscroll also does not make any network requests. Simple Autoscroll is an open-source extension. The source code is available on our GitHub page: https://github.com/danman113/simple-autoscrollv2

Note: Doesn't work on all websites.

UPDATE Version 2.0:
Simple Autoscroll V2 is now released!
* Extension Manifest V3 is now supported
* Your default settings are now synced to all of your devices!
* When selected, the new "Loop" option will make the page scroll back to the top once it reaches the bottom.

Version 2.01:
* Fixed a problem where scrolling would not stop

Version 2.2:
* Fixed an issue where many sites would not autoscroll
Version 2.3:
* Added a hotkey (Alt+J) to pause/resume scrolling. You can configure the hotkey on chrome://extensions/shortcuts                    

एक्सटेंशन की मूल जानकारी

नाम Simple Autoscroll Simple Autoscroll
ID fgecljolecpahpphjjhfhgiimljpkodo
आधिकारिक URL https://chromewebstore.google.com/detail/simple-autoscroll/fgecljolecpahpphjjhfhgiimljpkodo
विवरण An extension that adds the ability to automatically scroll through long pages.
फ़ाइल का आकार 71.42 KB
स्थापना संख्या 51,077
वर्तमान संस्करण 2.3
अंतिम अपडेट 2023-06-02
प्रकाशन तिथि 2020-02-25
रेटिंग 4.08/5 कुल 107 रेटिंग्स
डेवलपर https://berezin.io
ईमेल [email protected]
भुगतान के प्रकार free
सहायता पृष्ठ URL https://github.com/danman113/simple-autoscrollv2/issues
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "author": "Daniel Berezin",
    "name": "Simple Autoscroll",
    "short_name": "s-autoscroll",
    "description": "An extension that adds the ability to automatically scroll through long pages.",
    "version": "2.3",
    "action": {
        "default_icon": {
            "32": "images\/icon.png"
        },
        "default_title": "Simple Autoscroll",
        "default_popup": "scripts\/index.html"
    },
    "icons": {
        "128": "images\/icon.png"
    },
    "commands": {
        "Toggle Autoscroll": {
            "description": "Pauses\/Resumes Autoscroll on the current page",
            "suggested_key": {
                "default": "Alt+J",
                "mac": "Alt+J"
            }
        }
    },
    "content_scripts": [
        {
            "js": [
                "scripts\/content.js"
            ],
            "run_at": "document_end",
            "matches": [
                ""
            ]
        }
    ],
    "background": {
        "service_worker": "scripts\/background.js"
    },
    "permissions": [
        "storage"
    ]
}