Design Overlay
This extension will allow you overlay an image on the screen, such as a page design so you can compare by the pixel.
Что такое Design Overlay?
Design Overlay - это расширение Chrome, разработанное nickdeakin83, и его основная функция - "This extension will allow you overlay an image on the screen, such as a page design so you can compare by the pixel.".
Снимки экрана расширения
Скачать файл CRX расширения Design Overlay
Скачайте файлы расширений Design Overlay в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Developing a website by eyeballing the page and design? Tired of screenshotting your page and overlaying it in photoshop to check its pixel perfect? Pffft! Just add the png of the site to this extension, and switch it on! The design will be overlayed on your page with half opacity. Now you can be pixel perfect, and your designers wont have to slap you any longer!
Основная информация о расширении
Название | |
ID | mdkocgkfcdilceogdfekcacmpjpopdma |
Официальный URL | https://chrome.google.com/webstore/detail/design-overlay/mdkocgkfcdilceogdfekcacmpjpopdma |
Описание | This extension will allow you overlay an image on the screen, such as a page design so you can compare by the pixel. |
Размер файла | 17.41 KB |
Количество установок | 36 |
Текущая Версия | 0.0.0.3 |
Последнее Обновление | 2021-02-04 |
Дата публикации | 2021-01-28 |
Рейтинг | 5.00/5 Всего 1 оценок |
Разработчик | nickdeakin83 |
Электронная почта | [email protected] |
Тип оплаты | free |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Design Overlay", "description": "This extension will allow you overlay an image on the screen, such as a page design so you can compare by the pixel.", "version": "0.0.0.3", "icons": { "16": "\/images\/image_16.png", "32": "\/images\/image_32.png", "48": "\/images\/image_64.png", "128": "\/images\/image_128.png" }, "background": { "scripts": [ "background.js" ], "persistent": false }, "browser_action": { "default_title": "Right click and select an image in options!" }, "options_page": "options.html", "permissions": [ "activeTab", "storage" ] } |