Load More Extension
load more! load more! load more!
Was ist Load More Extension?
Load More Extension ist eine Chrome-Erweiterung, die von sugumura entwickelt wurde, und ihr Hauptmerkmal ist "load more! load more! load more!".
Erweiterungsscreenshots
Load More Extension-Erweiterungs-CRX-Datei herunterladen
Laden Sie Load More Extension-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | Load More Extension |
ID | oeajdfeikobhffmlfbmcgcdcaipfdkbg |
Offizielle URL | https://chromewebstore.google.com/detail/load-more-extension/oeajdfeikobhffmlfbmcgcdcaipfdkbg |
Beschreibung | load more! load more! load more! |
Dateigröße | 9.62 KB |
Installationsanzahl | 140 |
Aktuelle Version | 1.0 |
Letztes Update | 2022-01-12 |
Veröffentlichungsdatum | 2022-01-12 |
Entwickler | sugumura |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/sugumura/load-more-extension |
Hilfeseite URL | https://github.com/sugumura/load-more-extension/issues |
Unterstützte Sprachen | 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" } } |