Load More Extension
load more! load more! load more!
Load More Extension क्या है?
Load More Extension sugumura द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "load more! load more! load more!"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Load More Extension एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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 |
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 |
ईमेल | [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" } } |