Made In America
Adds a 'Made In America' badge to products on Amazon.
Made In America क्या है?
Made In America activatedapps1 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Adds a 'Made In America' badge to products on Amazon."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Made In America एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
This extension helps you find and support Made in USA products. There is no reliable way to filter products by country of origin to support local manufacturers and businesses in the United States. Whether the goal is to support local businesses and jobs, ensure the quality of our products, or to uphold ethical labor standards, we all have reasons for wanting to support our industries during these difficult times. When you perform a search on Amazon, we analyze and label products as "Made In America" after analyzing their product descriptions and feature details. This extension only analyzes products on Amazon.com currently. We are working hard to expand to more websites shortly.
एक्सटेंशन की मूल जानकारी
नाम | Made In America |
ID | jhdmadkcappabpmmcoanlabnogcllnhj |
आधिकारिक URL | https://chromewebstore.google.com/detail/made-in-america/jhdmadkcappabpmmcoanlabnogcllnhj |
विवरण | Adds a 'Made In America' badge to products on Amazon. |
फ़ाइल का आकार | 71.63 KB |
स्थापना संख्या | 906 |
वर्तमान संस्करण | 0.0.1 |
अंतिम अपडेट | 2020-07-27 |
प्रकाशन तिथि | 2020-07-26 |
रेटिंग | 4.00/5 कुल 3 रेटिंग्स |
डेवलपर | activatedapps1 |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Made In America", "description": "Adds a 'Made In America' badge to products on Amazon.", "version": "0.0.1", "permissions": [ "https:\/\/www.amazon.com\/*", "https:\/\/www.amazon.co.uk\/*", "https:\/\/www.amazon.ca\/*", "storage" ], "browser_action": { "default_icon": { "19": "images\/main_icon_19.png", "38": "images\/main_icon_38.png" }, "default_popup": "panel.html" }, "icons": { "16": "images\/main_icon_16.png", "48": "images\/main_icon_48.png", "128": "images\/main_icon_128.png" }, "content_scripts": [ { "run_at": "document_end", "matches": [ "https:\/\/www.amazon.com\/*", "https:\/\/www.amazon.co.uk\/*", "https:\/\/www.amazon.ca\/*" ], "js": [ "jquery-3.1.0.min.js", "content.js" ] } ], "web_accessible_resources": [ "flags\/*.png", "css\/*.css", "images\/*.png" ] } |