Cornpare

Overlays an image onto the current webpage for pixel perfect design comparison.

O que é Cornpare?

Cornpare é uma extensão do Chrome desenvolvida por tyler.buchea, e sua principal característica é "Overlays an image onto the current webpage for pixel perfect design comparison.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Cornpare

Baixe arquivos de extensão Cornpare 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

                        What does it do?
Overlays an image onto the current webpage for pixel perfect design comparison.

Who is it for?
If you are a web developer and you receive PSDs from design and are supposed to match them pixel perfect with the website than this is the tool for you. Simply export one of the PSD pages into a PNG, upload it to this extension, and compare.

Why corn?
The designer in my office has a weird thing with corn so I decided to call this extension "Cornpare" in his honor.                    

Informações Básicas da Extensão

Nome Cornpare Cornpare
ID nfdbjbddgidgpnmojkedgegfajmfapel
URL Oficial https://chromewebstore.google.com/detail/cornpare/nfdbjbddgidgpnmojkedgegfajmfapel
Descrição Overlays an image onto the current webpage for pixel perfect design comparison.
Tamanho do Arquivo 97.97 KB
Contagem de Instalações 45
Versão Atual 1.0
Última Atualização 2017-08-18
Data de Publicação 2017-08-18
Desenvolvedor tyler.buchea
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": "Cornpare",
    "description": "Overlays an image onto the current webpage for pixel perfect design comparison.",
    "version": "1.0",
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "activeTab",
        "https:\/\/ajax.googleapis.com\/",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "app.js"
            ]
        }
    ]
}