Fond Extension

For Discounts users, get a helpful reminder whenever you visit a site with discounts!

Fond Extension란 무엇입니까?

Fond Extension은(는) Fond에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "For Discounts users, get a helpful reminder whenever you visit a site with discounts!"입니다.

확장 프로그램 스크린샷

screenshot

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

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

확장 프로그램 사용 설명서

                        This Chrome extension will keep you up to date on all the discounts FOND has to offer. While visiting different websites, if a discount is available you will be notified by a banner appearing at the top of the browser page. Click the link in the banner to view the offer on FONDs page and use the link or code to receive your discount!

This extension is intended for registered users of www.fond.co - a valid login is required for access to discounts, special benefits, and more.                    

확장 프로그램 기본 정보

이름 Fond Extension Fond Extension
ID hibhcpjgdocamgallhmphmmjeahifgof
공식 URL https://chrome.google.com/webstore/detail/fond-extension/hibhcpjgdocamgallhmphmmjeahifgof
설명 For Discounts users, get a helpful reminder whenever you visit a site with discounts!
파일 크기 1.55 MB
설치 횟수 16,609
현재 버전 2.0.1
최근 업데이트 2022-12-07
출시 날짜 2019-12-17
평점 3.75/5 총 24 개의 평점
개발자 Fond
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://fond.co
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Fond Extension",
    "description": "For Discounts users, get a helpful reminder whenever you visit a site with discounts!",
    "version": "2.0.1",
    "browser_action": {
        "default_icon": "icon-gray_24.png",
        "active_icon": "icon_24.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "icons": {
        "16": "images\/app_logo16.png",
        "48": "images\/app_logo48.png",
        "128": "images\/app_logo128.png",
        "256": "images\/app_logo256.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "css": [
                "css\/banner.scss",
                "css\/fonts.scss"
            ],
            "js": [
                "content_script.js"
            ],
            "run_at": "document_end"
        },
        {
            "matches": [
                "https:\/\/*\/tokens\/extension_login_success"
            ],
            "js": [
                "authenticate.js"
            ],
            "run_at": "document_end"
        },
        {
            "matches": [
                "https:\/\/fond.co\/*"
            ],
            "js": [
                "install_checker.js"
            ],
            "run_at": "document_start"
        }
    ],
    "permissions": [
        "tabs",
        "storage"
    ],
    "web_accessible_resources": [
        "templates\/*",
        "logo.png",
        "images\/*",
        "fonts\/*"
    ]
}