Background Remover
Removes background from images
Background Remover क्या है?
Background Remover theswagdevteam द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Removes background from images"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Background Remover एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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" } } |