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
Eメール [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"
        }
    ]
}