Fond Extension

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

Fond Extension क्या है?

Fond Extension Fond द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "For Discounts users, get a helpful reminder whenever you visit a site with discounts!"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Fond Extension एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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\/*"
    ]
}