Background Remover

Removes background from images

O que é Background Remover?

Background Remover é uma extensão do Chrome desenvolvida por theswagdevteam, e sua principal característica é "Removes background from images".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Background Remover

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

                        This is a Chrome extension which automatically removes the background of an image you want to paste into PowerPoint for example. If the background has slightly differing colors, you can adjust the accuracy.
The extension opens a new tab with the modified image. Originally, I wanted to make it copy it directly to clipboard, but the API for that is not really finished yet.

This is my first extension and I know it is not perfect yet, so come at me with any approvement requests :)                    

Informações Básicas da Extensão

Nome Background Remover Background Remover
ID ajampfiaddpgbljhlhaobkiaadncgdnm
URL Oficial https://chrome.google.com/webstore/detail/background-remover/ajampfiaddpgbljhlhaobkiaadncgdnm
Descrição Removes background from images
Tamanho do Arquivo 173 KB
Contagem de Instalações 4,000
Versão Atual 2.1
Última Atualização 2020-05-11
Data de Publicação 2020-05-10
Classificação 2.00/5 Total de 5 Avaliações
Desenvolvedor theswagdevteam
Tipo de Pagamento free
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Background Remover",
    "version": "2.1",
    "manifest_version": 2,
    "description": "Removes background from images",
    "background": {
        "persistent": false,
        "scripts": [
            "background.js"
        ]
    },
    "permissions": [
        "contextMenus",
        "activeTab",
        "tabs",
        "storage"
    ],
    "web_accessible_resources": [
        "page.html",
        "content.js",
        "settings.js"
    ],
    "browser_action": {
        "default_title": "Background Remover",
        "default_popup": "settings.html"
    },
    "icons": {
        "16": "icon\/icon16.png",
        "24": "icon\/icon24.png",
        "32": "icon\/icon32.png",
        "64": "icon\/icon64.png",
        "128": "icon\/icon128.png"
    }
}