Load More Extension

load more! load more! load more!

Load More Extensionとは何ですか?

Load More Extensionはsugumuraによって開発されたChromeの拡張機能で、その主な機能は「load more! load more! load more!」です。

拡張機能のスクリーンショット

screenshot

Load More Extension拡張機能のCRXファイルをダウンロード

Load More Extension拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        Have you ever hit the "load more" button multiple times on a long, long issue on github?

This extension automates that tedious task for you.
Just click on the icon and it will show you all the abbreviated comments.

If you have ever pressed the "load more" button more than once, you should use it.                    

拡張機能の基本情報

名前 Load More Extension Load More Extension
ID oeajdfeikobhffmlfbmcgcdcaipfdkbg
公式URL https://chromewebstore.google.com/detail/load-more-extension/oeajdfeikobhffmlfbmcgcdcaipfdkbg
説明 load more! load more! load more!
ファイルサイズ 9.62 KB
インストール数 140
現在のバージョン 1.0
最終更新日 2022-01-12
公開日 2022-01-12
開発者 sugumura
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/sugumura/load-more-extension
ヘルプページのURL https://github.com/sugumura/load-more-extension/issues
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Load More Extension",
    "description": "load more! load more! load more!",
    "version": "1.0",
    "manifest_version": 3,
    "background": {
        "service_worker": "js\/background.js"
    },
    "action": [],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*\/*\/issues\/*",
                "https:\/\/github.com\/*\/*\/pull\/*"
            ],
            "js": [
                "js\/content.js"
            ]
        }
    ],
    "options_ui": {
        "page": "views\/options.html",
        "open_in_tab": false
    },
    "commands": {
        "load-more": {
            "suggested_key": {
                "default": "Ctrl+Shift+L",
                "mac": "Command+Shift+L"
            },
            "description": "load more! load more! load more!"
        }
    },
    "host_permissions": [
        "https:\/\/github.com\/"
    ],
    "permissions": [
        "activeTab",
        "notifications",
        "webRequest",
        "storage"
    ],
    "icons": {
        "16": "assets\/icons\/load_more_16.png",
        "48": "assets\/icons\/load_more_48.png",
        "128": "assets\/icons\/load_more_128.png"
    }
}