PhotoRoom Background Remover

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

Cos'è PhotoRoom Background Remover?

PhotoRoom Background Remover è un'estensione di Chrome sviluppata da PhotoRoom, e la sua funzione principale è "Remove the background from an image using the photoroom background remover.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione PhotoRoom Background Remover

Scarica i file di estensione PhotoRoom Background Remover in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome PhotoRoom Background Remover PhotoRoom Background Remover
ID lokegfgcnpdiambfeddkhgjhpbafbgnh
URL Ufficiale https://chromewebstore.google.com/detail/photoroom-background-remo/lokegfgcnpdiambfeddkhgjhpbafbgnh
Descrizione Remove the background from an image using the photoroom background remover.
Dimensione del File 12.87 KB
Conteggio Installazioni 298
Versione Corrente 1.0
Ultimo Aggiornamento 2023-10-24
Data di Pubblicazione 2023-10-24
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore PhotoRoom
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://www.photoroom.com
Lingue Supportate 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"
    }
}