PhotoRoom Background Remover
Remove the background from an image using the photoroom background remover.
O que é PhotoRoom Background Remover?
PhotoRoom Background Remover é uma extensão do Chrome desenvolvida por PhotoRoom, e sua principal característica é "Remove the background from an image using the photoroom background remover.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão PhotoRoom Background Remover
Baixe arquivos de extensão PhotoRoom 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
Remove the background from any image online, simply right click and select "Remove Background". From there you can download the result, change the background color, or open the image in the PhotoRoom webapp. Note: This extension does not store any information. By right clicking on the image and selecting "remove background" you submit it directly to https://www.photoroom.com/tools/background-remover.
Informações Básicas da Extensão
Nome | PhotoRoom Background Remover |
ID | lokegfgcnpdiambfeddkhgjhpbafbgnh |
URL Oficial | https://chromewebstore.google.com/detail/photoroom-background-remo/lokegfgcnpdiambfeddkhgjhpbafbgnh |
Descrição | Remove the background from an image using the photoroom background remover. |
Tamanho do Arquivo | 12.87 KB |
Contagem de Instalações | 298 |
Versão Atual | 1.0 |
Última Atualização | 2023-10-24 |
Data de Publicação | 2023-10-24 |
Classificação | 5.00/5 Total de 1 Avaliações |
Desenvolvedor | PhotoRoom |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://www.photoroom.com |
Idiomas Suportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "PhotoRoom Background Remover", "description": "Remove the background from an image using the photoroom background remover.", "version": "1.0", "permissions": [ "contextMenus", "activeTab", "scripting" ], "background": { "service_worker": "background.js" }, "host_permissions": [ "https:\/\/www.photoroom.com\/" ], "content_scripts": [ { "matches": [ "https:\/\/www.photoroom.com\/background-remover\/*" ], "js": [ "contentV3.js" ] } ], "icons": { "128": "icon128.png", "16": "icon16.png" } } |