Background Remover

Removes background from images

Background Remover là gì?

Background Remover là một tiện ích mở rộng Chrome được phát triển bởi theswagdevteam, và tính năng chính của nó là "Removes background from images".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Background Remover

Tải xuống các tệp mở rộng Background Remover dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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 :)                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Background Remover Background Remover
ID ajampfiaddpgbljhlhaobkiaadncgdnm
URL Chính Thức https://chrome.google.com/webstore/detail/background-remover/ajampfiaddpgbljhlhaobkiaadncgdnm
Mô tả Removes background from images
Kích Thước Tệp 173 KB
Số Lần Cài Đặt 4,000
Phiên Bản Hiện Tại 2.1
Cập Nhật Lần Cuối 2020-05-11
Ngày Phát Hành 2020-05-10
Đánh Giá 2.00/5 Tổng số 5 Đánh Giá
Nhà Phát Triển theswagdevteam
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}