Dev extensions reload

Reload enabled development extensions

Dev extensions reload란 무엇입니까?

Dev extensions reload은(는) Mykhailo Onikiienko에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Reload enabled development extensions"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Dev extensions reload 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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/                    

확장 프로그램 기본 정보

이름 Dev extensions reload Dev extensions reload
ID bbanndmhbmgajamonlgnjnfdbifbnbdj
공식 URL https://chromewebstore.google.com/detail/dev-extensions-reload/bbanndmhbmgajamonlgnjnfdbifbnbdj
설명 Reload enabled development extensions
파일 크기 14.59 KB
설치 횟수 332
현재 버전 1.1
최근 업데이트 2015-04-27
출시 날짜 2015-04-27
평점 4.91/5 총 11 개의 평점
개발자 Mykhailo Onikiienko
이메일 [email protected]
결제 유형 free
도움말 페이지 URL https://github.com/onikienko/dev-extensions-reload/issues
개인정보 보호 정책 페이지 URL https://onikienko.github.io/browser-extensions/privacy-policy
지원되는 언어 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"
    ]
}