LL Developer Tools

Add some useful function for Web Developer

LL Developer Tools là gì?

LL Developer Tools là một tiện ích mở rộng Chrome được phát triển bởi https://leolovenet.com, và tính năng chính của nó là "Add some useful function for Web Developer".

Ả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 LL Developer Tools

Tải xuống các tệp mở rộng LL Developer Tools 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

                        (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                    

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

Tên LL Developer Tools LL Developer Tools
ID kmhkenfbapdengjogcengbnpagkjonad
URL Chính Thức https://chromewebstore.google.com/detail/ll-developer-tools/kmhkenfbapdengjogcengbnpagkjonad
Mô tả Add some useful function for Web Developer
Kích Thước Tệp 98.88 KB
Số Lần Cài Đặt 173
Phiên Bản Hiện Tại 4.0.1
Cập Nhật Lần Cuối 2015-01-22
Ngày Phát Hành 2015-01-22
Đánh Giá 2.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển https://leolovenet.com
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/leolovenet/LLDT-chrome-plugin
URL Trang Trợ Giúp https://github.com/leolovenet/LLDT-chrome-plugin
Ngôn Ngữ Được Hỗ Trợ 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__"
        }
    }
}