LazyLoader

LazyLoader, an extension to scroll down on pages with delayed load aka "lazy load". Powered by Shrimp Boat!

LazyLoader क्या है?

LazyLoader Wrybread द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "LazyLoader, an extension to scroll down on pages with delayed load aka "lazy load". Powered by Shrimp Boat!"।

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

screenshot

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

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

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

                        Some web pages, like Instagram, load as you scroll down the page. Sometimes you just want to load the whole page though, hence LazyLoader. 

By default you click the icon and it loads the current page 20 times, but you can set it to load a specific page however many times you want in the settings.

Because friends don't let friends scroll down on the same page 100 times a day.                    

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

नाम LazyLoader LazyLoader
ID nddlclelhkdcpggignhoejfonogmpemn
आधिकारिक URL https://chromewebstore.google.com/detail/lazyloader/nddlclelhkdcpggignhoejfonogmpemn
विवरण LazyLoader, an extension to scroll down on pages with delayed load aka "lazy load". Powered by Shrimp Boat!
फ़ाइल का आकार 55.11 KB
स्थापना संख्या 490
वर्तमान संस्करण 1.0.2
अंतिम अपडेट 2019-01-28
प्रकाशन तिथि 2019-01-22
रेटिंग 5.00/5 कुल 1 रेटिंग्स
डेवलपर Wrybread
ईमेल [email protected]
भुगतान के प्रकार free
गोपनीयता नीति पृष्ठ URL https://gizmoware.net/privacy
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "LazyLoader",
    "version": "1.0.2",
    "manifest_version": 2,
    "description": "LazyLoader, an extension to scroll down on pages with delayed load aka \"lazy load\". Powered by Shrimp Boat!",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "default_locale": "en",
    "background": {
        "scripts": [
            "src\/background\/background.js"
        ],
        "persistent": true
    },
    "browser_action": {
        "default_icon": {
            "19": "icons\/icon19.png",
            "38": "icons\/icon38.png"
        }
    },
    "options_page": "src\/options\/index.html",
    "permissions": [
        "tabs",
        "storage",
        "contextMenus",
        "notifications",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "src\/inject\/helpers.js",
                "src\/inject\/inject.js"
            ],
            "run_at": "document_end"
        }
    ]
}