price2alert

adds function to see price history charts and a function to notification on Rakuten's site.

price2alert란 무엇입니까?

price2alert은(는) https://price2alert.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "adds function to see price history charts and a function to notification on Rakuten's site."입니다.

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

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

확장 프로그램 사용 설명서

                        🔔 価格推移グラフ
楽天にある、数百万点の商品の価格推移をグラフ化して表示

🔔価格が変動したら通知
楽天で何円まで値下がりしたら通知するかを設定
あとは通知を受け取るだけです

お得なお買い物にご活用ください                    

확장 프로그램 기본 정보

이름 price2alert price2alert
ID kkfcdpcgeiedbdhjgiaplpehldnjffjb
공식 URL https://chromewebstore.google.com/detail/price2alert/kkfcdpcgeiedbdhjgiaplpehldnjffjb
설명 adds function to see price history charts and a function to notification on Rakuten's site.
파일 크기 58.15 KB
설치 횟수 20,000
현재 버전 2.0.10
최근 업데이트 2024-02-19
출시 날짜 2020-12-09
평점 2.11/5 총 9 개의 평점
개발자 https://price2alert.com
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://price2alert.com
도움말 페이지 URL https://price2alert.com/contact
개인정보 보호 정책 페이지 URL http://mnsearch.com/privacypolicy
지원되는 언어 en,ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_extName__",
    "description": "__MSG_extDescription__",
    "short_name": "price2alert",
    "version": "2.0.10",
    "manifest_version": 3,
    "default_locale": "ja",
    "permissions": [
        "storage"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "html\/*",
                "img\/icon\/*",
                "img\/logo\/*",
                "js\/*"
            ],
            "matches": [
                ""
            ],
            "use_dynamic_url": true
        }
    ],
    "icons": {
        "16": "img\/logo\/price2alert_16.png",
        "19": "img\/logo\/price2alert_19.png",
        "48": "img\/logo\/price2alert_48.png",
        "128": "img\/logo\/price2alert_128.png"
    },
    "background": {
        "service_worker": "js\/background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.rakuten.co.jp\/*",
                "*:\/\/price2alert.com\/*"
            ],
            "js": [
                "js\/contents_script.js"
            ],
            "css": [
                "css\/style.css"
            ],
            "run_at": "document_idle"
        }
    ],
    "options_page": "option\/menu.html",
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self';",
        "sandbox": "sandbox allow-scripts allow-forms allow-popups allow-modals; script-src 'self' 'unsafe-inline' 'unsafe-eval'; child-src 'self';"
    }
}