Dev extensions reload

Reload enabled development extensions

Dev extensions reload là gì?

Dev extensions reload là một tiện ích mở rộng Chrome được phát triển bởi Mykhailo Onikiienko, và tính năng chính của nó là "Reload enabled development extensions".

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

screenshot
screenshot

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

Tải xuống các tệp mở rộng Dev extensions reload 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

                        Extension for Extensions Developers.

Use shortcut (Alt-Z by default) or context menu on any tab to reload enabled unpacked extensions.

Pros:

- Quick reload with context menu or shortcut (Alt-Z by default but you can change.  See Options page for instructions)
- Reload only enabled extensions
- If Options page is open also restart it
- Ability to reload active tab (see Options page). It useful for content script extensions development.
- Ability to turn off reload from context menu (see Options page)

Contras:

- It closes the background debugger window. No public API to reopen :(

Source code - https://github.com/onikienko/dev-extensions-reload/                    

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

Tên Dev extensions reload Dev extensions reload
ID bbanndmhbmgajamonlgnjnfdbifbnbdj
URL Chính Thức https://chromewebstore.google.com/detail/dev-extensions-reload/bbanndmhbmgajamonlgnjnfdbifbnbdj
Mô tả Reload enabled development extensions
Kích Thước Tệp 14.59 KB
Số Lần Cài Đặt 332
Phiên Bản Hiện Tại 1.1
Cập Nhật Lần Cuối 2015-04-27
Ngày Phát Hành 2015-04-27
Đánh Giá 4.91/5 Tổng số 11 Đánh Giá
Nhà Phát Triển Mykhailo Onikiienko
Email [email protected]
Loại Thanh Toán free
URL Trang Trợ Giúp https://github.com/onikienko/dev-extensions-reload/issues
URL Trang Chính Sách Bảo Mật https://onikienko.github.io/browser-extensions/privacy-policy
Ngôn Ngữ Được Hỗ Trợ en,ru,uk
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_extName__",
    "description": "__MSG_extDescr__",
    "version": "1.1",
    "manifest_version": 2,
    "author": "Michael Onikienko",
    "default_locale": "en",
    "icons": {
        "16": "img\/ext_icons\/16.png",
        "48": "img\/ext_icons\/48.png",
        "128": "img\/ext_icons\/128.png"
    },
    "background": {
        "scripts": [
            "js\/storage.js",
            "js\/background.js"
        ],
        "persistent": false
    },
    "commands": {
        "reload_dev_extensions": {
            "description": "__MSG_extDescr__",
            "suggested_key": {
                "default": "Alt+Z"
            }
        }
    },
    "options_page": "options.html",
    "permissions": [
        "management",
        "contextMenus",
        "storage",
        "tabs"
    ]
}