Simple Auto Scroll

Simple speed-customizable auto scroll

Simple Auto Scroll क्या है?

Simple Auto Scroll xjpablobrx द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Simple speed-customizable auto scroll"।

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

screenshot

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

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

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

                        1. What is it?

A speed-customizable auto-scroll Google Chrome extension.

2. Why?

A lot of times I find myself reading long texfiles, and after a while, I kind of wish I could just read them as if they were a movie. I've tried with the mouse (middle click) thingy, but it's just not practical and adjusting the speed is very tricky - not to mention that a lot of times it's just too fast.

3. Features

This extension allows you to easily change the auto-scroll speed and save it in three different modes; slow, medium and fast. A single click will stop the auto-scrolling.

Note: Does not work in Google related websites.                    

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

नाम Simple Auto Scroll Simple Auto Scroll
ID dccjkemhmffnljlnnoffljpkhkfpldff
आधिकारिक URL https://chrome.google.com/webstore/detail/simple-auto-scroll/dccjkemhmffnljlnnoffljpkhkfpldff
विवरण Simple speed-customizable auto scroll
फ़ाइल का आकार 12.31 KB
स्थापना संख्या 40,000
वर्तमान संस्करण 0.1.4
अंतिम अपडेट 2018-12-17
प्रकाशन तिथि 2018-12-17
रेटिंग 4.04/5 कुल 214 रेटिंग्स
डेवलपर xjpablobrx
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/jpablobr/simple-auto-scroll
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Simple Auto Scroll",
    "version": "0.1.4",
    "description": "Simple speed-customizable auto scroll",
    "icons": {
        "48": "icons\/autoscroll.png",
        "128": "icons\/autoscroll.png"
    },
    "background": {
        "page": "background.html"
    },
    "options_page": "options.html",
    "browser_action": {
        "default_title": "",
        "default_icon": "icons\/autoscroll.png"
    },
    "permissions": [
        "*:\/\/*\/*",
        "storage",
        ""
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/simple_autoscroll.js"
            ],
            "run_at": "document_start"
        }
    ]
}