LazyLoader

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

LazyLoader là gì?

LazyLoader là một tiện ích mở rộng Chrome được phát triển bởi Wrybread, và tính năng chính của nó là "LazyLoader, an extension to scroll down on pages with delayed load aka "lazy load". Powered by Shrimp Boat!".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng LazyLoader

Tải xuống các tệp mở rộng LazyLoader dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên LazyLoader LazyLoader
ID nddlclelhkdcpggignhoejfonogmpemn
URL Chính Thức https://chromewebstore.google.com/detail/lazyloader/nddlclelhkdcpggignhoejfonogmpemn
Mô tả LazyLoader, an extension to scroll down on pages with delayed load aka "lazy load". Powered by Shrimp Boat!
Kích Thước Tệp 55.11 KB
Số Lần Cài Đặt 490
Phiên Bản Hiện Tại 1.0.2
Cập Nhật Lần Cuối 2019-01-28
Ngày Phát Hành 2019-01-22
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển Wrybread
Email [email protected]
Loại Thanh Toán free
URL Trang Chính Sách Bảo Mật https://gizmoware.net/privacy
Ngôn Ngữ Được Hỗ Trợ 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"
        }
    ]
}