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文件

下載Made In America擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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"
    ]
}