PhotoRoom Background Remover

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

Co to jest PhotoRoom Background Remover?

PhotoRoom Background Remover to rozszerzenie Chrome opracowane przez PhotoRoom, a jego główną funkcją jest „Remove the background from an image using the photoroom background remover.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia PhotoRoom Background Remover

Pobierz pliki rozszerzeń PhotoRoom Background Remover w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa PhotoRoom Background Remover PhotoRoom Background Remover
ID lokegfgcnpdiambfeddkhgjhpbafbgnh
Oficjalny URL https://chromewebstore.google.com/detail/photoroom-background-remo/lokegfgcnpdiambfeddkhgjhpbafbgnh
Opis Remove the background from an image using the photoroom background remover.
Rozmiar pliku 12.87 KB
Liczba instalacji 298
Aktualna Wersja 1.0
Ostatnia Aktualizacja 2023-10-24
Data Publikacji 2023-10-24
Ocena 5.00/5 Łącznie 1 Oceny
Deweloper PhotoRoom
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://www.photoroom.com
Obsługiwane Języki 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"
    }
}