FootballNotifier

Desktop notifications of goals for selected matches.

ما هو FootballNotifier؟

FootballNotifier هو إضافة Chrome تم تطويرها بواسطة Sports Notifier، والميزة الرئيسية لها هي "Desktop notifications of goals for selected matches.".

لقطات شاشة التمديد

screenshot
screenshot
screenshot
screenshot

تحميل ملف CRX للإضافة FootballNotifier

قم بتنزيل ملفات الامتداد FootballNotifier بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        Using this extension, you get a list of live as well as recent upcoming/concluded matches along with their live score and a short summary. You can select the matches for which you want the desktop notifications. Once you do that, there will be desktop notifications for every goal, yellow card, red cards for only the live matches.

Please post your feedback/bugs if any and let us know what you want to see in the future updates! Thanks.                    

معلومات أساسية عن التمديد

الاسم FootballNotifier FootballNotifier
ID aodfneekmimgoglhaklfnbpnilnoofof
عنوان URL الرسمي https://chrome.google.com/webstore/detail/footballnotifier/aodfneekmimgoglhaklfnbpnilnoofof
الوصف Desktop notifications of goals for selected matches.
حجم الملف 1.19 MB
عدد التثبيتات 142
النسخة الحالية 1.0
آخر تحديث 2015-03-29
تاريخ النشر 2015-03-29
تقييم 3.80/5 مجموع تقييمات 5
المطور Sports Notifier
نوع الدفع free
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "FootballNotifier",
    "description": "Desktop notifications of goals for selected matches.",
    "version": "1.0",
    "permissions": [
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "storage",
        "notifications"
    ],
    "browser_action": {
        "default_icon": "football.png",
        "default_popup": "popup.html"
    },
    "background": {
        "page": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*"
            ],
            "js": [
                "getMatches.js"
            ]
        }
    ]
}