LL Developer Tools

Add some useful function for Web Developer

Что такое LL Developer Tools?

LL Developer Tools - это расширение Chrome, разработанное https://leolovenet.com, и его основная функция - "Add some useful function for Web Developer".

Снимки экрана расширения

screenshot
screenshot

Скачать файл CRX расширения LL Developer Tools

Скачайте файлы расширений 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 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__"
        }
    }
}