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
官方網址 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
電子郵箱 [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"
    }
}