Made In America

Adds a 'Made In America' badge to products on Amazon.

Made In America란 무엇입니까?

Made In America은(는) activatedapps1에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Adds a 'Made In America' badge to products on Amazon."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Made In America 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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 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"
    ]
}