Extensions Reloader

Reload all unpacked extensions

什么是Extensions Reloader?

Extensions Reloader是由Ali Gasymov开发的Chrome扩展程序,该扩展的主要功能是“Reload all unpacked extensions”。

扩展截图

screenshot

下载Extensions Reloader扩展crx文件

下载Extensions Reloader扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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                    

扩展基本信息

名称 Extensions Reloader Extensions Reloader
ID cdodkghoiojefkdnkciflkgigkgljjeo
官方URL https://chromewebstore.google.com/detail/extensions-reloader/cdodkghoiojefkdnkciflkgigkgljjeo
简介 Reload all unpacked extensions
文件大小 6.93 KB
安装次数 26
当前版本 1.0.0
更新时间 2023-10-12
上架时间 2021-12-15
开发者 Ali Gasymov
电子邮箱 [email protected]
付费类型 free
隐私政策页面URL https://www.gasymov.com/privacy-policy/extensions-reloader
支持的语言 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"
    ]
}