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 |
Eメール | [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__" } } } |