Fond Extension

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

Fond Extensionคืออะไร?

Fond Extension เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Fond และคุณลักษณะหลักของมันคือ "For Discounts users, get a helpful reminder whenever you visit a site with discounts!"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Fond Extension

ดาวน์โหลดไฟล์ส่วนขยาย Fond Extension ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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\/*"
    ]
}