LazyLoader

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

什么是LazyLoader?

LazyLoader是由Wrybread开发的Chrome扩展程序,该扩展的主要功能是“LazyLoader, an extension to scroll down on pages with delayed load aka "lazy load". Powered by Shrimp Boat!”。

扩展截图

screenshot

下载LazyLoader扩展crx文件

下载LazyLoader扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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"
        }
    ]
}