LL Developer Tools

Add some useful function for Web Developer

LL Developer Tools란 무엇입니까?

LL Developer Tools은(는) https://leolovenet.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Add some useful function for Web Developer"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

LL Developer Tools 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        (1)集成了 xdebugHelper ,并增加更多选项
(2)禁用浏览器缓存
(3)展示 HTTP 回应头信息,以及服务器的 IP 地址

(1)The integration of the xdebugHelper, and add more options
(2)Disable the browser cache
(3)Display HTTP response header information, and server IP address

  源码地址 Github : https://github.com/leolovenet/LLDT-chrome-plugin                    

확장 프로그램 기본 정보

이름 LL Developer Tools LL Developer Tools
ID kmhkenfbapdengjogcengbnpagkjonad
공식 URL https://chromewebstore.google.com/detail/ll-developer-tools/kmhkenfbapdengjogcengbnpagkjonad
설명 Add some useful function for Web Developer
파일 크기 98.88 KB
설치 횟수 173
현재 버전 4.0.1
최근 업데이트 2015-01-22
출시 날짜 2015-01-22
평점 2.00/5 총 1 개의 평점
개발자 https://leolovenet.com
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/leolovenet/LLDT-chrome-plugin
도움말 페이지 URL https://github.com/leolovenet/LLDT-chrome-plugin
지원되는 언어 en,zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_manifest_appName__",
    "description": "__MSG_manifest_appDescription__",
    "version": "4.0.1",
    "author": "[email protected]",
    "background": {
        "page": "backgroud.html"
    },
    "content_scripts": [
        {
            "all_frames": false,
            "css": [
                "assets\/styles\/lldt.css"
            ],
            "js": [
                "assets\/libs\/jquery.js",
                "assets\/scripts\/lldt.js"
            ],
            "matches": [
                "*:\/\/*\/*"
            ],
            "run_at": "document_start"
        }
    ],
    "icons": {
        "128": "assets\/images\/logo.png"
    },
    "manifest_version": 2,
    "minimum_chrome_version": "22",
    "page_action": {
        "default_icon": "assets\/images\/logo.png",
        "default_popup": "popupMenu.html",
        "default_title": "__MSG_manifest_pageAction_defaultTitle__"
    },
    "default_locale": "zh_CN",
    "options_page": "options.html",
    "permissions": [
        "tabs",
        "webRequest",
        "webRequestBlocking",
        "*:\/\/*\/*"
    ],
    "web_accessible_resources": [
        "assets\/images\/*.png"
    ],
    "commands": {
        "_execute_page_action": {
            "suggested_key": {
                "default": "Ctrl+Shift+X",
                "mac": "Command+Shift+X"
            },
            "description": "__MSG_manifest_pageAction_executeCommands_Des__"
        }
    }
}