PhotoRoom Background Remover

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

Hvad er PhotoRoom Background Remover?

PhotoRoom Background Remover er en Chrome-udvidelse udviklet af PhotoRoom, og dens hovedfunktion er "Remove the background from an image using the photoroom background remover.".

Udvidelsesskærmbilleder

screenshot

Download PhotoRoom Background Remover-udvidelses-CRX-fil

Download PhotoRoom Background Remover-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn PhotoRoom Background Remover PhotoRoom Background Remover
ID lokegfgcnpdiambfeddkhgjhpbafbgnh
Officiel URL https://chromewebstore.google.com/detail/photoroom-background-remo/lokegfgcnpdiambfeddkhgjhpbafbgnh
Beskrivelse Remove the background from an image using the photoroom background remover.
Filstørrelse 12.87 KB
Antal Installationer 298
Nuværende Version 1.0
Senest Opdateret 2023-10-24
Udgivelsesdato 2023-10-24
Bedømmelse 5.00/5 Samlet 1 Bedømmelser
Udvikler PhotoRoom
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://www.photoroom.com
Understøttede Sprog 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"
    }
}