Autoscroll : Automatic Page Scrolling

An extension to help scroll a webpage

Autoscroll : Automatic Page Scrolling क्या है?

Autoscroll : Automatic Page Scrolling Emil Vinod द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "An extension to help scroll a webpage"।

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

screenshot
screenshot
screenshot
screenshot

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

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

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

                        This extension is perfect for those who are tired of manually scrolling through long articles, websites, or social media posts. No more tired fingers from scrolling or losing your place on a page. With Autoscroll, you can simply set the pace that you prefer and let the extension do the rest :)

For a guide to the extension visit : https://sites.google.com/view/autoscrollguide/home                    

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

नाम Autoscroll : Automatic Page Scrolling Autoscroll : Automatic Page Scrolling
ID mofpoefmipkeaakcglcfamacffochlid
आधिकारिक URL https://chromewebstore.google.com/detail/autoscroll-automatic-page/mofpoefmipkeaakcglcfamacffochlid
विवरण An extension to help scroll a webpage
फ़ाइल का आकार 191 KB
स्थापना संख्या 46
वर्तमान संस्करण 0.0.1
अंतिम अपडेट 2024-01-23
प्रकाशन तिथि 2023-11-23
रेटिंग 4.20/5 कुल 5 रेटिंग्स
डेवलपर Emil Vinod
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://sites.google.com/view/autoscrollguide/home
सहायता पृष्ठ URL https://sites.google.com/view/autoscrollguide/home
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Autoscroll : Automatic Page Scrolling",
    "version": "0.0.1",
    "description": "An extension to help scroll a webpage",
    "icons": {
        "16": "Logo.png",
        "32": "Logo.png",
        "48": "Logo.png",
        "128": "Logo.png"
    },
    "action": {
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "contentscript.js"
            ]
        }
    ],
    "background": {
        "js": "scroll.js"
    },
    "permissions": [
        "activeTab"
    ]
}