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”。
扩展截图
下载LL Developer Tools扩展crx文件
下载LL Developer Tools扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
(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 |
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__" } } } |