Made In America
Adds a 'Made In America' badge to products on Amazon.
Made In America là gì?
Made In America là một tiện ích mở rộng Chrome được phát triển bởi activatedapps1, và tính năng chính của nó là "Adds a 'Made In America' badge to products on Amazon.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Made In America
Tải xuống các tệp mở rộng Made In America 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 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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Made In America |
ID | jhdmadkcappabpmmcoanlabnogcllnhj |
URL Chính Thức | https://chromewebstore.google.com/detail/made-in-america/jhdmadkcappabpmmcoanlabnogcllnhj |
Mô tả | Adds a 'Made In America' badge to products on Amazon. |
Kích Thước Tệp | 71.63 KB |
Số Lần Cài Đặt | 906 |
Phiên Bản Hiện Tại | 0.0.1 |
Cập Nhật Lần Cuối | 2020-07-27 |
Ngày Phát Hành | 2020-07-26 |
Đánh Giá | 4.00/5 Tổng số 3 Đánh Giá |
Nhà Phát Triển | activatedapps1 |
[email protected] | |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } |