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.

O que é Design Overlay?

Design Overlay é uma extensão do Chrome desenvolvida por nickdeakin83, e sua principal característica é "This extension will allow you overlay an image on the screen, such as a page design so you can compare by the pixel.".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Design Overlay

Baixe arquivos de extensão Design Overlay no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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!                    

Informações Básicas da Extensão

Nome Design Overlay Design Overlay
ID mdkocgkfcdilceogdfekcacmpjpopdma
URL Oficial https://chrome.google.com/webstore/detail/design-overlay/mdkocgkfcdilceogdfekcacmpjpopdma
Descrição This extension will allow you overlay an image on the screen, such as a page design so you can compare by the pixel.
Tamanho do Arquivo 17.41 KB
Contagem de Instalações 36
Versão Atual 0.0.0.3
Última Atualização 2021-02-04
Data de Publicação 2021-01-28
Classificação 5.00/5 Total de 1 Avaliações
Desenvolvedor nickdeakin83
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados 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"
    ]
}