Easy Scroll

This brings you a comfortable reading experience with smooth scroll of necessary amount of webpage by pressing an assigned key.

Easy Scroll क्या है?

Easy Scroll https://gumoisland.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This brings you a comfortable reading experience with smooth scroll of necessary amount of webpage by pressing an assigned key."।

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

screenshot

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

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

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

                        'Easy Scroll' brings you a comfortable articles reading experience with smooth scroll of necessary amount of webpage by pressing an assigned key. Wherever you read an article, just hit the key to scroll. Then it will scroll down properly eliminating any interruption of your reading pace and article's context.

Motivation : Basically, every time I read an article on website, there were some methods to scroll down. Spacebar or PageDown key scrolled too much amount at one use. And on the other hand, DownArrow key or Mouse Wheel took me  too many pressing or wheeling. Both of these methods made me frustrated.

Function : By pressing the RightArrow key, you can scroll down a half of your web screen smoothly. The assigned key, amount of scrolling, and scrolling velocity can be adjusted at preference menu.                    

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

नाम Easy Scroll Easy Scroll
ID lilheebcgalohleheomgkolgmbbpgldp
आधिकारिक URL https://chromewebstore.google.com/detail/easy-scroll/lilheebcgalohleheomgkolgmbbpgldp
विवरण This brings you a comfortable reading experience with smooth scroll of necessary amount of webpage by pressing an assigned key.
फ़ाइल का आकार 74.22 KB
स्थापना संख्या 2,194
वर्तमान संस्करण 1.20
अंतिम अपडेट 2023-12-28
प्रकाशन तिथि 2018-10-31
रेटिंग 3.89/5 कुल 28 रेटिंग्स
डेवलपर https://gumoisland.com
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://gumoisland.com
सहायता पृष्ठ URL https://gumoisland.com
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Easy Scroll",
    "version": "1.20",
    "manifest_version": 3,
    "description": "This brings you a comfortable reading experience with smooth scroll of necessary amount of webpage by pressing an assigned key.",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "src\/jquery.min.js",
                "src\/content.js"
            ]
        }
    ],
    "action": {
        "default_icon": {
            "16": "images\/icon_16.png",
            "19": "images\/icon_19.png",
            "32": "images\/icon_32.png",
            "38": "images\/icon_38.png",
            "48": "images\/icon_48.png",
            "128": "images\/icon_128.png"
        },
        "default_title": "Easy Scroll"
    },
    "background": {
        "service_worker": "src\/background.js"
    },
    "options_page": "src\/options.html",
    "permissions": [
        "tabs",
        "activeTab",
        "storage"
    ],
    "host_permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "src\/*"
            ],
            "matches": [
                ""
            ]
        }
    ]
}