Background Remover
Removes background from images
Τι είναι το Background Remover;
Το Background Remover είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον theswagdevteam, και η κύρια λειτουργία του είναι "Removes background from images".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Background Remover
Λήψη αρχείων επέκτασης Background Remover σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
This is a Chrome extension which automatically removes the background of an image you want to paste into PowerPoint for example. If the background has slightly differing colors, you can adjust the accuracy. The extension opens a new tab with the modified image. Originally, I wanted to make it copy it directly to clipboard, but the API for that is not really finished yet. This is my first extension and I know it is not perfect yet, so come at me with any approvement requests :)
Βασικές Πληροφορίες Επέκτασης
Όνομα | |
ID | ajampfiaddpgbljhlhaobkiaadncgdnm |
Επίσημο URL | https://chrome.google.com/webstore/detail/background-remover/ajampfiaddpgbljhlhaobkiaadncgdnm |
Περιγραφή | Removes background from images |
Μέγεθος Αρχείου | 173 KB |
Αριθμός Εγκαταστάσεων | 4,000 |
Τρέχουσα Έκδοση | 2.1 |
Τελευταία Ενημέρωση | 2020-05-11 |
Ημερομηνία Δημοσίευσης | 2020-05-10 |
Αξιολόγηση | 2.00/5 Συνολικά 5 Αξιολογήσεις |
Προγραμματιστής | theswagdevteam |
Τύπος Πληρωμής | free |
Υποστηριζόμενες Γλώσσες | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Background Remover", "version": "2.1", "manifest_version": 2, "description": "Removes background from images", "background": { "persistent": false, "scripts": [ "background.js" ] }, "permissions": [ "contextMenus", "activeTab", "tabs", "storage" ], "web_accessible_resources": [ "page.html", "content.js", "settings.js" ], "browser_action": { "default_title": "Background Remover", "default_popup": "settings.html" }, "icons": { "16": "icon\/icon16.png", "24": "icon\/icon24.png", "32": "icon\/icon32.png", "64": "icon\/icon64.png", "128": "icon\/icon128.png" } } |