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开发的Chrome扩展程序,该扩展的主要功能是“Reload all unpacked extensions using the extension's toolbar button or by browsing to "http://reload.extensions"”。

扩展截图

screenshot
screenshot
screenshot

下载Extensions Reloader扩展crx文件

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

扩展使用说明

                        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\""
}