PhotoRoom Background Remover

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

Τι είναι το PhotoRoom Background Remover;

Το PhotoRoom Background Remover είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον PhotoRoom, και η κύρια λειτουργία του είναι "Remove the background from an image using the photoroom background remover.".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης PhotoRoom Background Remover

Λήψη αρχείων επέκτασης PhotoRoom Background Remover σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα PhotoRoom Background Remover PhotoRoom Background Remover
ID lokegfgcnpdiambfeddkhgjhpbafbgnh
Επίσημο URL https://chromewebstore.google.com/detail/photoroom-background-remo/lokegfgcnpdiambfeddkhgjhpbafbgnh
Περιγραφή Remove the background from an image using the photoroom background remover.
Μέγεθος Αρχείου 12.87 KB
Αριθμός Εγκαταστάσεων 298
Τρέχουσα Έκδοση 1.0
Τελευταία Ενημέρωση 2023-10-24
Ημερομηνία Δημοσίευσης 2023-10-24
Αξιολόγηση 5.00/5 Συνολικά 1 Αξιολογήσεις
Προγραμματιστής PhotoRoom
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://www.photoroom.com
Υποστηριζόμενες Γλώσσες 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"
    }
}