Local

Find Amazon products locally. Get what you want today, with no shipping cost!

Local란 무엇입니까?

Local은(는) berger.m.sophie에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Find Amazon products locally. Get what you want today, with no shipping cost!"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Local 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        This is an extension that allows users to search for Amazon products in their own surrounding in order to find local stores at which to buy the desired items.

1) Open up the product page on Amazon
2) Click the extension icon in your bookmarks bar
3) See all the relevant stores on a map!                    

확장 프로그램 기본 정보

이름 Local Local
ID apdmmfimgdclckmmkjkojbgmeinlloah
공식 URL https://chromewebstore.google.com/detail/local/apdmmfimgdclckmmkjkojbgmeinlloah
설명 Find Amazon products locally. Get what you want today, with no shipping cost!
파일 크기 11.91 KB
설치 횟수 523
현재 버전 2.1
최근 업데이트 2022-10-07
출시 날짜 2022-02-02
평점 5.00/5 총 1 개의 평점
개발자 berger.m.sophie
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Local",
    "description": "Find Amazon products locally. Get what you want today, with no shipping cost!",
    "version": "2.1",
    "permissions": [
        "scripting"
    ],
    "host_permissions": [
        "*:\/\/*\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.amazon.com\/*",
                "https:\/\/www.amazon.ca\/*",
                "https:\/\/www.amazon.co.uk\/*",
                "https:\/\/www.amazon.at\/*",
                "https:\/\/www.amazon.de\/*"
            ],
            "js": [
                "contentScript.js"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_icon": {
            "16": "images\/icons8-shop-local-16.png",
            "32": "images\/icons8-shop-local-32.png",
            "48": "images\/icons8-shop-local-48.png",
            "100": "images\/icons8-shop-local-100.png"
        },
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "images\/icons8-shop-local-16.png",
        "32": "images\/icons8-shop-local-32.png",
        "48": "images\/icons8-shop-local-48.png",
        "100": "images\/icons8-shop-local-100.png"
    }
}