Extensions Reloader

Reload all unpacked extensions

What is Extensions Reloader?

Extensions Reloader is a Chrome extension developed by Ali Gasymov, and its main feature is "Reload all unpacked extensions".

Extension Screenshots

screenshot

Download Extensions Reloader Extension CRX File

Download Extensions Reloader extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        Unpacked extensions can be reloaded in two ways:
1. Click the extension icon in the browser toolbar
2. Perform a keyboard shortcut (Alt+Shift+R)

Note: if the manifest has been changed in your extension, then you need to update it on the extensions page                    

Extension Basic Information

Name Extensions Reloader Extensions Reloader
ID cdodkghoiojefkdnkciflkgigkgljjeo
Official URL https://chromewebstore.google.com/detail/extensions-reloader/cdodkghoiojefkdnkciflkgigkgljjeo
Description Reload all unpacked extensions
File Size 6.93 KB
Installation Count 26
Current Version 1.0.0
Last Updated 2023-10-12
Publish Date 2021-12-15
Developer Ali Gasymov
Email [email protected]
Payment Type free
Privacy Policy Page URL https://www.gasymov.com/privacy-policy/extensions-reloader
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Extensions Reloader",
    "description": "Reload all unpacked extensions",
    "manifest_version": 3,
    "version": "1.0.0",
    "action": {
        "default_title": "Reload Extensions"
    },
    "icons": {
        "16": "static\/images\/icon-16.png",
        "32": "static\/images\/icon-32.png",
        "48": "static\/images\/icon-48.png",
        "128": "static\/images\/icon-128.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "commands": {
        "reload": {
            "description": "Reload all extensions in development",
            "suggested_key": {
                "default": "Alt+Shift+R"
            }
        }
    },
    "permissions": [
        "management"
    ]
}