IReviews Shopping Assistant

Never miss out on savings again! Compare and track product prices and availability while browsing your favorite stores.

IReviews Shopping Assistant란 무엇입니까?

IReviews Shopping Assistant은(는) https://ireviews.com/shopping-assistant에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Never miss out on savings again! Compare and track product prices and availability while browsing your favorite stores."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

IReviews Shopping Assistant 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Receive notifications letting you know when items are back in stock. Get recommendations for cards that help you earn even more savings when purchasing products.                    

확장 프로그램 기본 정보

이름 IReviews Shopping Assistant IReviews Shopping Assistant
ID ppjcaodegfaoikboamajamdiggbalnai
공식 URL https://chromewebstore.google.com/detail/ireviews-shopping-assista/ppjcaodegfaoikboamajamdiggbalnai
설명 Never miss out on savings again! Compare and track product prices and availability while browsing your favorite stores.
파일 크기 2.41 MB
설치 횟수 70
현재 버전 3.0.10
최근 업데이트 2022-12-03
출시 날짜 2021-07-19
평점 5.00/5 총 3 개의 평점
개발자 https://ireviews.com/shopping-assistant
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://www.ireviews.com/
도움말 페이지 URL https://www.ireviews.com/contact
개인정보 보호 정책 페이지 URL https://www.ireviews.com/privacy-policy
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "background": {
        "service_worker": "background.js",
        "type": "module"
    },
    "name": "IReviews Shopping Assistant",
    "version": "3.0.10",
    "description": "Never miss out on savings again! Compare and track product prices and availability while browsing your favorite stores.",
    "icons": {
        "512": "NewLogo.png"
    },
    "action": {
        "default_popup": "popup.html"
    },
    "permissions": [
        "tabs",
        "storage",
        "scripting",
        "notifications"
    ],
    "host_permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "https:\/\/api.ireviews.com\/*",
        "https:\/\/fonts.googleapis.com\/*"
    ],
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                ".\/static\/js\/jquery-3.6.0.min.js",
                ".\/static\/js\/chart.min.js",
                "foreground.js",
                "gtag.js"
            ]
        }
    ]
}