PhotoRoom Background Remover

Remove the background from an image using the photoroom background remover.

¿Qué es PhotoRoom Background Remover?

PhotoRoom Background Remover es una extensión de Chrome desarrollada por PhotoRoom, y su función principal es "Remove the background from an image using the photoroom background remover.".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión PhotoRoom Background Remover

Descarga archivos de extensión PhotoRoom Background Remover en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre PhotoRoom Background Remover PhotoRoom Background Remover
ID lokegfgcnpdiambfeddkhgjhpbafbgnh
URL Oficial https://chromewebstore.google.com/detail/photoroom-background-remo/lokegfgcnpdiambfeddkhgjhpbafbgnh
Descripción Remove the background from an image using the photoroom background remover.
Tamaño del Archivo 12.87 KB
Cantidad de Instalaciones 298
Versión Actual 1.0
Última Actualización 2023-10-24
Fecha de Publicación 2023-10-24
Calificación 5.00/5 Total de 1 Calificaciones
Desarrollador PhotoRoom
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://www.photoroom.com
Idiomas Soportados 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"
    }
}