X-Ray Specs
Show the internals of a webpage
Что такое X-Ray Specs?
X-Ray Specs - это расширение Chrome, разработанное http://red-robot.co.uk, и его основная функция - "Show the internals of a webpage".
Снимки экрана расширения
Скачать файл CRX расширения X-Ray Specs
Скачайте файлы расширений X-Ray Specs в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Quickly show the internal layout of a website.
Основная информация о расширении
Название | |
ID | dibgfligccpcboljaaicckpdhjolpcma |
Официальный URL | https://chrome.google.com/webstore/detail/dibgfligccpcboljaaicckpdhjolpcma |
Описание | Show the internals of a webpage |
Размер файла | 26.8 KB |
Количество установок | 36 |
Текущая Версия | 1.1 |
Последнее Обновление | 2016-06-07 |
Дата публикации | 2016-06-07 |
Рейтинг | 5.00/5 Всего 1 оценок |
Разработчик | http://red-robot.co.uk |
Тип оплаты | free |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "X-Ray Specs", "description": "Show the internals of a webpage", "version": "1.1", "content_scripts": [ { "matches": [ "file:\/\/*\/*", "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "js\/content.js" ], "run_at": "document_end" } ], "background": { "scripts": [ "js\/background.js" ] }, "permissions": [ "tabs" ], "browser_action": { "default_icon": "i\/icon.png" }, "icons": { "128": "i\/x-ray_128x128.png" }, "web_accessible_resources": [ "css\/debug.css" ] } |