Extensions Reloader

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

Extensions Reloader là gì?

Extensions Reloader là một tiện ích mở rộng Chrome được phát triển bởi https://www.wzmn.net, và tính năng chính của nó là "Reload all unpacked extensions using the extension's toolbar button or by browsing to "http://reload.extensions"".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Extensions Reloader

Tải xuống các tệp mở rộng Extensions Reloader dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Extensions Reloader Extensions Reloader
ID fimgfedafeadlieiabdeeaodndnlbhid
URL Chính Thức https://chromewebstore.google.com/detail/extensions-reloader/fimgfedafeadlieiabdeeaodndnlbhid
Mô tả Reload all unpacked extensions using the extension's toolbar button or by browsing to "http://reload.extensions"
Kích Thước Tệp 15.11 KB
Số Lần Cài Đặt 14,847
Phiên Bản Hiện Tại 1.15
Cập Nhật Lần Cuối 2021-07-26
Ngày Phát Hành 2016-02-29
Đánh Giá 4.29/5 Tổng số 126 Đánh Giá
Nhà Phát Triển https://www.wzmn.net
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/arikw/chrome-extensions-reloader
URL Trang Trợ Giúp https://github.com/arikw/chrome-extensions-reloader
Ngôn Ngữ Được Hỗ Trợ 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\""
}