Buy Localized - Made in USA filter on Amazon

This extension will tag Amazon.com products with their country of origin

Was ist Buy Localized - Made in USA filter on Amazon?

Buy Localized - Made in USA filter on Amazon ist eine Chrome-Erweiterung, die von https://www.buylocalized.com entwickelt wurde, und ihr Hauptmerkmal ist "This extension will tag Amazon.com products with their country of origin".

Erweiterungsscreenshots

screenshot
screenshot
screenshot
screenshot
screenshot

Buy Localized - Made in USA filter on Amazon-Erweiterungs-CRX-Datei herunterladen

Laden Sie Buy Localized - Made in USA filter on Amazon-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        Our Extension shows you American made products on Amazon.com. Our research team has so far found more than 450,000 made in the USA listings on Amazon, and as you browse Amazon we show them to you. We started this because so many people are researching where things are from individually, we decided to do it once and show it the easiest way we could think of. We are passionate about buying local and supporting your community, and we want to make it easy!

You can read about our standards for declaring something made in the USA here: https://www.buylocalized.com/articles/what-does-american-made-mean-to-us/

We have no affiliation with Amazon.com, and all the identified products are as a result of our own research, we get it wrong sometimes.

UPDATES
------ Dec  30th 2020 v0.9.2.2 -------
- flags now show up in the "Compare with similar items" section

------ Dec  26th 2020 v0.9.2.1 -------
- removed very ugly list of categories from the popup
- fixed disappearing products from the popup

------ Dec  23rd 2020 v0.9.2.0 -------
- added little flags to USA-made products on search pages
- added toggle-switch to easily enable and disable features
- fixed left/right button of the extension bar
- BuyLocalized now works on individual product pages too, tagging American Made products

------ Dec  07th 2020 v0.9.1.3 -------
- improved the filtering and user experience in the popover

------ Dec  04th 2020 v0.9.1.0 -------
- Critical fix after amazon.com front-end changes
- big improvements to UX (caching)

------ Sept 8th 2020 v0.9.0.5 -------
-Added announcement system

------ July 2nd 2020 v0.9.0.4 -------
- Search within extension
- Filter by Category/Brand                    

Grundlegende Informationen zur Erweiterung

Name Buy Localized - Made in USA filter on Amazon Buy Localized - Made in USA filter on Amazon
ID aicfbaaflkellfmamfiaanaeanfobiah
Offizielle URL https://chromewebstore.google.com/detail/buy-localized-made-in-usa/aicfbaaflkellfmamfiaanaeanfobiah
Beschreibung This extension will tag Amazon.com products with their country of origin
Dateigröße 883 KB
Installationsanzahl 2,242
Aktuelle Version 0.9.2.2
Letztes Update 2021-01-01
Veröffentlichungsdatum 2020-07-02
Bewertung 3.46/5 Insgesamt 13 Bewertungen
Entwickler https://www.buylocalized.com
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://www.buylocalized.com
Hilfeseite URL https://www.buylocalized.com/faq/
URL der Datenschutzrichtlinien-Seite https://www.buylocalized.com/extension/privacy-policy
Unterstützte Sprachen en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Buy Localized - Made in USA filter on Amazon",
    "description": "This extension will tag Amazon.com products with their country of origin ",
    "icons": {
        "16": "assets\/imgs\/buylocalizedicon16_darker.png",
        "48": "assets\/imgs\/buylocalizedicon48.png",
        "128": "assets\/imgs\/buylocalizedicon.png"
    },
    "version": "0.9.2.2",
    "background": {
        "scripts": [
            "assets\/js\/jquery-3.4.1.min.js",
            "assets\/js\/background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.amazon.com\/*",
                "*:\/\/*.amazon.ca\/*"
            ],
            "css": [
                "assets\/css\/bootstrap.css",
                "assets\/slick\/slick.css",
                "assets\/slick\/slick-theme.css",
                "assets\/css\/bootstrap-treeview.css",
                "assets\/css\/buylocalizedslider.css",
                "assets\/css\/searchbar.css",
                "assets\/css\/searchresults.css",
                "assets\/css\/show_more_results_button.css",
                "assets\/css\/animate.css"
            ],
            "js": [
                "assets\/js\/jquery-3.4.1.min.js",
                "assets\/slick\/slick.js",
                "assets\/js\/bootstrap-treeview.js",
                "assets\/js\/content.js",
                "assets\/js\/popup.js"
            ],
            "run_at": "document_idle"
        },
        {
            "matches": [
                "https:\/\/*.buylocalized.com\/*"
            ],
            "js": [
                "assets\/js\/jquery-3.4.1.min.js",
                "assets\/js\/content-bl.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "web_accessible_resources": [
        "assets\/imgs\/USA.svg",
        "assets\/imgs\/buylocalizedicon.png",
        "assets\/imgs\/icon2.png",
        "assets\/imgs\/icon3.png",
        "assets\/imgs\/icon3beta.png",
        "assets\/imgs\/search-dark.png",
        "assets\/snippets\/popover.html",
        "assets\/snippets\/searchbar.html",
        "assets\/snippets\/searchresults.html",
        "assets\/snippets\/searchresultitem.html",
        "assets\/snippets\/show_more_results_button.html",
        "assets\/snippets\/slideritem.html",
        "assets\/localized\/insert.html",
        "assets\/localized\/*"
    ],
    "browser_action": {
        "default_title": "Buy Localized!",
        "default_popup": "assets\/snippets\/popup.html",
        "default_icon": "assets\/imgs\/buylocalizedicon16_darker.png"
    },
    "permissions": [
        "storage"
    ],
    "options_page": "assets\/snippets\/options.html",
    "options_ui": {
        "page": "assets\/snippets\/options.html",
        "open_in_tab": false
    }
}