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.

Co to jest Design Overlay?

Design Overlay to rozszerzenie Chrome opracowane przez nickdeakin83, a jego główną funkcją jest „This extension will allow you overlay an image on the screen, such as a page design so you can compare by the pixel.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Design Overlay

Pobierz pliki rozszerzeń Design Overlay w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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!                    

Podstawowe informacje o rozszerzeniu

Nazwa Design Overlay Design Overlay
ID mdkocgkfcdilceogdfekcacmpjpopdma
Oficjalny URL https://chrome.google.com/webstore/detail/design-overlay/mdkocgkfcdilceogdfekcacmpjpopdma
Opis This extension will allow you overlay an image on the screen, such as a page design so you can compare by the pixel.
Rozmiar pliku 17.41 KB
Liczba instalacji 36
Aktualna Wersja 0.0.0.3
Ostatnia Aktualizacja 2021-02-04
Data Publikacji 2021-01-28
Ocena 5.00/5 Łącznie 1 Oceny
Deweloper nickdeakin83
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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"
    ]
}