Extensions Reloader

Reload all unpacked extensions using the extension's toolbar button or by browsing to "http://reload.extensions"

Extensions Reloader क्या है?

Extensions Reloader https://www.wzmn.net द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Reload all unpacked extensions using the extension's toolbar button or by browsing to "http://reload.extensions""।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Extensions Reloader एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        If you've ever developed a Google Chrome™ extension, you might have wanted to automate the process of reloading your unpacked extension without the need of going through the extensions page.

"Extensions Reloader" allows you to reload all unpacked extensions using 3 ways:
1- The extension's toolbar button
2- Browsing to "http://reload.extensions"
3- Keyboard shortcut

The toolbar icon will reload unpacked extensions using a single click.

The "reload by browsing" is intended for automating the reload process using "post build" scripts - just browse to "http://reload.extensions", and chrome will open with freshly reloaded extensions.

Whenever a refresh is executed, a green "OK" badge will appear on Extensions Reloader's toolbar icon.

** This extension is open-source and available on GitHub:
https://github.com/arikw/chrome-extensions-reloader                    

एक्सटेंशन की मूल जानकारी

नाम Extensions Reloader Extensions Reloader
ID fimgfedafeadlieiabdeeaodndnlbhid
आधिकारिक URL https://chromewebstore.google.com/detail/extensions-reloader/fimgfedafeadlieiabdeeaodndnlbhid
विवरण Reload all unpacked extensions using the extension's toolbar button or by browsing to "http://reload.extensions"
फ़ाइल का आकार 15.11 KB
स्थापना संख्या 14,847
वर्तमान संस्करण 1.15
अंतिम अपडेट 2021-07-26
प्रकाशन तिथि 2016-02-29
रेटिंग 4.29/5 कुल 126 रेटिंग्स
डेवलपर https://www.wzmn.net
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/arikw/chrome-extensions-reloader
सहायता पृष्ठ URL https://github.com/arikw/chrome-extensions-reloader
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Extensions Reloader",
    "manifest_version": 2,
    "version": "1.15",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "background": {
        "page": "background.html"
    },
    "commands": {
        "reload": {
            "description": "Reload all extensions in development",
            "suggested_key": {
                "default": "Alt+Shift+R"
            }
        }
    },
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "permissions": [
        "tabs",
        "management",
        "storage",
        "webRequest",
        "webRequestBlocking",
        "http:\/\/reload.extensions\/"
    ],
    "browser_action": {
        "default_icon": "icon19.png",
        "default_title": "Reload Extensions"
    },
    "description": "Reload all unpacked extensions using the extension's toolbar button or by browsing to \"http:\/\/reload.extensions\""
}