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.

Cos'è Design Overlay?

Design Overlay è un'estensione di Chrome sviluppata da nickdeakin83, e la sua funzione principale è "This extension will allow you overlay an image on the screen, such as a page design so you can compare by the pixel.".

Screenshot dell'Estensione

screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Design Overlay

Scarica i file di estensione Design Overlay in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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!                    

Informazioni di Base sull'Estensione

Nome Design Overlay Design Overlay
ID mdkocgkfcdilceogdfekcacmpjpopdma
URL Ufficiale https://chrome.google.com/webstore/detail/design-overlay/mdkocgkfcdilceogdfekcacmpjpopdma
Descrizione This extension will allow you overlay an image on the screen, such as a page design so you can compare by the pixel.
Dimensione del File 17.41 KB
Conteggio Installazioni 36
Versione Corrente 0.0.0.3
Ultimo Aggiornamento 2021-02-04
Data di Pubblicazione 2021-01-28
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore nickdeakin83
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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"
    ]
}